/*================================================
  RockHaven Limited — Brand Override Stylesheet
  Primary:  #0A1E6E  (Deep Royal Blue)
  Accent:   #1E90FF  (Electric/Sky Blue)
  Silver:   #C0C0C0 / #E8E8E8
  Dark:     #0D0D0D
  White:    #FFFFFF
=================================================*/

/* ── CSS Custom Properties ───────────────────── */
:root {
    --rh-primary:       #0A1E6E;
    --rh-primary-dark:  #071550;
    --rh-primary-mid:   #0D2A8A;
    --rh-accent:        #1E90FF;
    --rh-accent-dark:   #0A72E0;
    --rh-dark:          #0D0D0D;
    --rh-silver:        #C0C0C0;
    --rh-silver-light:  #E8E8E8;
    --rh-white:         #FFFFFF;
    --rh-body-text:     #687693;
    --rh-light-bg:      #f4f6ff;
    --rh-font-heading:  "Josefin Sans", sans-serif;
}

/* ── Global Template Resets ──────────────────── */
.navbar {
    background-color: #ffffff !important;
    border-bottom: 1px solid #eef0f8;
    box-shadow: 0 2px 20px rgba(10, 30, 110, 0.06);
}
.navbar.sticky {
    background-color: #ffffff !important;
    box-shadow: 0 4px 30px rgba(10, 30, 110, 0.12);
    animation: 500ms ease-in-out 0s normal none 1 running fadeInDown;
}
.navbar .navbar-nav .nav-item .nav-link {
    color: var(--rh-dark) !important;
}
.navbar .navbar-nav .nav-item .nav-link:hover,
.navbar .navbar-nav .nav-item .nav-link.active {
    color: var(--rh-primary) !important;
    background: rgba(10, 30, 110, 0.05) !important;
}
.navbar .navbar-toggler {
    color: var(--rh-primary) !important;
}
.navbar .navbar-toggler .burger-menu span {
    background: var(--rh-primary) !important;
}
.default-btn {
    background-color: var(--rh-primary) !important;
    color: var(--rh-white) !important;
    font-family: var(--rh-font-heading) !important;
    border-radius: 50px !important;
}
.default-btn:hover {
    background-color: var(--rh-accent) !important;
    color: var(--rh-white) !important;
}
.section-title h2,
.section-title .h2 {
    color: var(--rh-primary);
    font-family: var(--rh-font-heading);
    font-weight: 800;
}
.about-content .sub {
    background-color: var(--rh-primary) !important;
}
.about-content h2,
.about-content .h2 {
    color: var(--rh-primary) !important;
    font-family: var(--rh-font-heading);
    font-weight: 800;
}

/* ── Top Header ──────────────────────────────── */
.rh-top-header {
    background-color: var(--rh-primary);
    padding: 8px 0;
}
.rh-header-info {
    gap: 28px;
    list-style: none;
    padding: 0;
    margin: 0;
}
.rh-header-info li,
.rh-header-info a {
    color: rgba(255, 255, 255, 0.82);
    font-size: 13px;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: color 0.3s;
}
.rh-header-info a:hover {
    color: var(--rh-accent);
}
.rh-header-social {
    gap: 16px;
    list-style: none;
    padding: 0;
    margin: 0;
}
.rh-header-social a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 15px;
    text-decoration: none;
    transition: color 0.3s;
}
.rh-header-social a:hover {
    color: var(--rh-accent);
}

/* ── Responsive Offcanvas ────────────────────── */
.rh-offcanvas-header {
    background-color: var(--rh-primary);
    padding: 16px 20px;
}
.responsive-navbar .navbar-nav .nav-link {
    color: var(--rh-dark) !important;
    padding: 10px 0;
    border-bottom: 1px solid #eef0f8;
}
.responsive-navbar .navbar-nav .nav-link:hover {
    color: var(--rh-primary) !important;
}
.rh-offcanvas-info {
    border-top: 1px solid #eef0f8;
    padding-top: 20px;
}
.rh-offcanvas-info p {
    color: var(--rh-body-text);
    font-size: 14px;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
}
.rh-offcanvas-info p i {
    color: var(--rh-primary);
}
.rh-offcanvas-info a {
    color: var(--rh-body-text);
    text-decoration: none;
}
.rh-offcanvas-info a:hover {
    color: var(--rh-primary);
}

/* ── Full-Screen Hero ────────────────────────── */
.rh-hero-fullscreen {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow: hidden;
}

/* Background image layer */
.rh-hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    transform: scale(1.04);
    animation: rh-hero-zoom 18s ease-in-out infinite alternate;
}
@keyframes rh-hero-zoom {
    from { transform: scale(1.04); }
    to   { transform: scale(1.12); }
}

/* Semi-transparent overlay — lets hero-scene.svg show through */
.rh-hero-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(
        ellipse at 30% 80%,
        rgba(30, 144, 255, 0.10) 0%,
        rgba(10, 30, 110, 0.72) 60%
    ), rgba(10, 30, 110, 0.55);
}

/* Content wrapper — sits above bg + overlay */
.rh-hero-container {
    position: relative;
    z-index: 2;
    padding-top: 60px;
    padding-bottom: 130px; /* clearance for the stats bar */
}

/* Eyebrow label */
.rh-hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 7px 20px;
    background: rgba(30, 144, 255, 0.18);
    border: 1px solid rgba(30, 144, 255, 0.45);
    border-radius: 50px;
    color: var(--rh-accent);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.6px;
    margin-bottom: 28px;
    backdrop-filter: blur(6px);
}
.rh-hero-eyebrow i {
    font-size: 14px;
    color: var(--rh-accent);
}

/* Main headline */
.rh-hero-title {
    color: #ffffff;
    font-family: var(--rh-font-heading);
    font-weight: 900;
    font-size: 68px;
    line-height: 1.1;
    margin-bottom: 24px;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}
.rh-text-accent {
    color: var(--rh-accent);
}

/* Sub-headline */
.rh-hero-desc {
    color: rgba(255, 255, 255, 0.80);
    font-size: 19px;
    line-height: 1.7;
    max-width: 640px;
    margin: 0 auto 40px;
}

/* CTA row */
.rh-hero-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}
.rh-hero-btn-primary.default-btn {
    padding: 16px 36px !important;
    font-size: 15px !important;
    box-shadow: 0 8px 32px rgba(10, 30, 110, 0.4);
}
.rh-hero-btn-primary.default-btn:hover {
    background-color: var(--rh-accent) !important;
    box-shadow: 0 12px 40px rgba(30, 144, 255, 0.4);
    transform: translateY(-2px);
}

/* Silver outlined button — works as <a> or <button> */
.rh-btn-silver {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 34px;
    border-radius: 50px;
    border: 2px solid rgba(192, 192, 192, 0.7);
    color: rgba(232, 232, 232, 0.95) !important;
    font-weight: 600;
    font-family: var(--rh-font-heading);
    font-size: 15px;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.4s;
    backdrop-filter: blur(4px);
    background: rgba(255, 255, 255, 0.04);
}
.rh-btn-silver:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--rh-silver);
    color: #ffffff !important;
    transform: translateY(-2px);
}

/* Keep the old .rh-btn-outline alias pointing at the same style */
.rh-btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 34px;
    border-radius: 50px;
    border: 2px solid rgba(192, 192, 192, 0.7);
    color: rgba(232, 232, 232, 0.95) !important;
    font-weight: 600;
    font-family: var(--rh-font-heading);
    font-size: 15px;
    text-decoration: none;
    transition: all 0.4s;
}
.rh-btn-outline:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--rh-silver);
    color: #ffffff !important;
}

/* ── Hero Stats Bar ──────────────────────────── */
.rh-hero-stats {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 3;
    background: rgba(7, 21, 80, 0.75);
    backdrop-filter: blur(12px);
    border-top: 1px solid rgba(30, 144, 255, 0.2);
    animation: rh-stats-fadein 0.8s ease 0.6s both;
}
@keyframes rh-stats-fadein {
    from { opacity: 0; transform: translateY(20px); }
    to   { opacity: 1; transform: translateY(0); }
}
.rh-hero-stat {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 22px 32px;
    border-right: 1px solid rgba(255, 255, 255, 0.08);
    transition: background 0.3s;
    cursor: default;
}
.rh-hero-stat--last {
    border-right: none;
}
.rh-hero-stat:hover {
    background: rgba(30, 144, 255, 0.08);
}
.rh-hero-stat-icon {
    width: 44px;
    height: 44px;
    min-width: 44px;
    background: rgba(30, 144, 255, 0.2);
    border: 1px solid rgba(30, 144, 255, 0.35);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s;
}
.rh-hero-stat:hover .rh-hero-stat-icon {
    background: rgba(30, 144, 255, 0.35);
}
.rh-hero-stat-icon i {
    font-size: 20px;
    color: var(--rh-accent);
}
.rh-hero-stat-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.rh-hero-stat-text strong {
    font-size: 15px;
    font-weight: 700;
    color: #ffffff;
    font-family: var(--rh-font-heading);
    line-height: 1.2;
}
.rh-hero-stat-text span {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.55);
    letter-spacing: 0.3px;
}

/* ── Section Utilities ───────────────────────── */
.rh-section {
    padding: 90px 0 70px;
}
.rh-section--light {
    background-color: var(--rh-light-bg);
}
.rh-section-badge {
    display: inline-flex;
    padding: 5px 18px;
    background-color: var(--rh-primary);
    border-radius: 5px;
    color: #ffffff;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.8px;
    margin-bottom: 16px;
    text-transform: uppercase;
}
.rh-section-badge--accent {
    background-color: var(--rh-accent);
}
.rh-section-title-alt {
    color: var(--rh-primary);
    font-family: var(--rh-font-heading);
    font-weight: 800;
    font-size: 38px;
}

/* ── Service Cards (6-up expertise grid) ─────── */
/* ── Service Card (image variant) ────────────── */
.rh-svc-card {
    background: #ffffff;
    border-radius: 14px;
    border: 1px solid var(--rh-silver-light);
    border-bottom: 3px solid transparent;
    box-shadow: 0 2px 16px rgba(10, 30, 110, 0.05);
    transition: transform 0.35s ease, box-shadow 0.35s ease, border-bottom-color 0.35s ease;
    height: 100%;
    cursor: default;
    overflow: hidden;
}
.rh-svc-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 18px 48px rgba(10, 30, 110, 0.14);
    border-bottom-color: var(--rh-primary);
}

/* Image header */
.rh-svc-img {
    width: 100%;
    height: 180px;
    overflow: hidden;
    background: var(--rh-primary);
}
.rh-svc-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}
.rh-svc-card:hover .rh-svc-img img {
    transform: scale(1.04);
}

/* Card body */
.rh-svc-body {
    padding: 24px 22px 20px;
    text-align: left;
}
.rh-svc-card--img .rh-svc-icon {
    width: 50px;
    height: 50px;
    background: rgba(30, 144, 255, 0.1);
    border: 2px solid rgba(30, 144, 255, 0.22);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 0 16px;
    transition: background 0.35s ease, transform 0.35s ease;
}
.rh-svc-card:hover .rh-svc-icon {
    background: var(--rh-accent);
    border-color: var(--rh-accent);
    transform: scale(1.1);
}
.rh-svc-icon {
    width: 64px;
    height: 64px;
    background: rgba(30, 144, 255, 0.1);
    border: 2px solid rgba(30, 144, 255, 0.22);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: background 0.35s ease, transform 0.35s ease;
}
.rh-svc-card:hover .rh-svc-icon {
    background: var(--rh-accent);
    border-color: var(--rh-accent);
    transform: scale(1.1) rotate(-6deg);
}
.rh-svc-icon i {
    font-size: 22px;
    color: var(--rh-accent);
    transition: color 0.35s ease;
}
.rh-svc-card:hover .rh-svc-icon i {
    color: #ffffff;
}
.rh-svc-card h5 {
    color: var(--rh-primary);
    font-size: 15px;
    font-weight: 700;
    font-family: var(--rh-font-heading);
    margin-bottom: 8px;
    line-height: 1.3;
}
.rh-svc-card p {
    color: var(--rh-body-text);
    font-size: 13px;
    line-height: 1.65;
    margin-bottom: 14px;
}
.rh-svc-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 600;
    color: var(--rh-accent);
    text-decoration: none;
    transition: gap 0.25s ease, color 0.25s ease;
}
.rh-svc-link:hover {
    gap: 10px;
    color: var(--rh-primary);
}

/* ══════════════════════════════════════════════
   ABOUT INFOGRAPHIC PANEL
   ══════════════════════════════════════════════ */
.rh-about-infographic {
    background: linear-gradient(145deg, #04102E 0%, #0A1E6E 55%, #0D2A8A 100%);
    border-radius: 20px;
    padding: 28px;
    box-shadow: 0 16px 56px rgba(10,30,110,0.30);
    display: flex;
    flex-direction: column;
    gap: 22px;
    position: relative;
    overflow: hidden;
    height: 100%;
    min-height: 500px;
}
.rh-about-infographic::before {
    content: '';
    position: absolute;
    top: -60px; right: -60px;
    width: 220px; height: 220px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(30,144,255,0.18) 0%, transparent 70%);
    pointer-events: none;
}
.rh-about-infographic::after {
    content: '';
    position: absolute;
    bottom: -40px; left: -40px;
    width: 180px; height: 180px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(79,70,229,0.14) 0%, transparent 70%);
    pointer-events: none;
}

/* Top bar: founded + RC badge */
.rh-aig-topbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    flex-wrap: wrap;
}
.rh-aig-founded {
    display: flex;
    align-items: center;
    gap: 10px;
}
.rh-aig-founded > i {
    font-size: 28px;
    color: var(--rh-accent);
}
.rh-aig-founded-year {
    display: block;
    font-size: 22px;
    font-weight: 900;
    font-family: var(--rh-font-heading);
    color: #ffffff;
    line-height: 1;
}
.rh-aig-founded-lbl {
    display: block;
    font-size: 10px;
    color: rgba(255,255,255,0.50);
    text-transform: uppercase;
    letter-spacing: 0.8px;
}
.rh-aig-rc-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(30,144,255,0.15);
    border: 1px solid rgba(30,144,255,0.30);
    border-radius: 50px;
    padding: 5px 14px;
    font-size: 12px;
    font-weight: 700;
    font-family: var(--rh-font-heading);
    color: rgba(255,255,255,0.80);
}
.rh-aig-rc-badge i { color: var(--rh-accent); }

/* 2×2 metrics grid */
.rh-aig-metrics {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}
.rh-aig-metric {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.09);
    border-radius: 14px;
    padding: 18px 16px;
    text-align: center;
    transition: background 0.3s;
}
.rh-aig-metric:hover { background: rgba(255,255,255,0.10); }
.rh-aig-metric--accent {
    background: rgba(30,144,255,0.12);
    border-color: rgba(30,144,255,0.25);
}
.rh-aig-metric--accent:hover { background: rgba(30,144,255,0.20); }
.rh-aig-metric-num {
    display: block;
    font-size: 32px;
    font-weight: 900;
    font-family: var(--rh-font-heading);
    color: var(--rh-accent);
    line-height: 1;
    margin-bottom: 5px;
}
.rh-aig-metric-lbl {
    font-size: 11px;
    color: rgba(255,255,255,0.55);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 500;
}

/* Divider label */
.rh-aig-divider-label {
    font-size: 10px;
    font-weight: 700;
    font-family: var(--rh-font-heading);
    color: rgba(255,255,255,0.38);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.rh-aig-divider-label::before,
.rh-aig-divider-label::after {
    content: '';
    flex: 1;
    height: 1px;
    background: rgba(255,255,255,0.10);
}

/* 3×2 service icons */
.rh-aig-services {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}
.rh-aig-svc {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 12px;
    padding: 12px 8px;
    text-align: center;
    cursor: default;
    transition: background 0.3s, transform 0.3s;
}
.rh-aig-svc:hover {
    background: rgba(30,144,255,0.15);
    transform: translateY(-3px);
}
.rh-aig-svc i {
    display: block;
    font-size: 22px;
    color: var(--rh-accent);
    margin-bottom: 6px;
}
.rh-aig-svc span {
    font-size: 9.5px;
    font-weight: 700;
    font-family: var(--rh-font-heading);
    color: rgba(255,255,255,0.65);
    text-transform: uppercase;
    letter-spacing: 0.3px;
    line-height: 1.2;
}

/* Zone coverage bar chart */
.rh-aig-zones {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.rh-aig-zone-row {
    display: flex;
    align-items: center;
    gap: 10px;
}
.rh-aig-zone-name {
    font-size: 11px;
    font-weight: 600;
    color: rgba(255,255,255,0.65);
    min-width: 100px;
    display: flex;
    align-items: center;
    gap: 4px;
}
.rh-aig-zone-track {
    flex: 1;
    height: 8px;
    background: rgba(255,255,255,0.07);
    border-radius: 4px;
    overflow: hidden;
}
.rh-aig-zone-bar {
    height: 100%;
    width: var(--zw, 0%);
    background: var(--zc, var(--rh-accent));
    border-radius: 4px;
    transition: width 1.2s cubic-bezier(0.25,0.46,0.45,0.94);
    box-shadow: 0 0 8px rgba(255,255,255,0.15);
}
.rh-aig-zone-count {
    font-size: 11px;
    font-weight: 700;
    font-family: var(--rh-font-heading);
    color: rgba(255,255,255,0.50);
    min-width: 36px;
    text-align: right;
}

/* Responsive */
@media (max-width: 991px) {
    .rh-about-infographic { min-height: auto; }
    .rh-aig-metric-num { font-size: 26px; }
}
@media (max-width: 767px) {
    .rh-about-infographic { padding: 20px; gap: 16px; }
    .rh-aig-zone-name { min-width: 80px; font-size: 10px; }
}

/* ── About visual panel (kept for legacy) ─────── */
.rh-about-visual-wrap {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 12px 40px rgba(10, 30, 110, 0.18);
}
.rh-about-visual-img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 16px;
}
.rh-about-chip {
    position: absolute;
    background: white;
    border-radius: 10px;
    padding: 8px 14px;
    box-shadow: 0 4px 20px rgba(10, 30, 110, 0.18);
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 72px;
}
.rh-about-chip-num {
    font-family: var(--rh-font-heading);
    font-size: 18px;
    font-weight: 900;
    color: var(--rh-primary);
    line-height: 1.1;
}
.rh-about-chip-txt {
    font-size: 10px;
    color: var(--rh-body-text);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}
.rh-about-chip--tl { top: 16px;  left: 16px;  }
.rh-about-chip--tr { top: 16px;  right: 16px; }
.rh-about-chip--bl { bottom: 16px; left: 16px; }
.rh-about-chip--br { bottom: 16px; right: 16px; }

/* ── Project card (image variant) ────────────── */
.rh-project-card--img {
    padding: 0 !important;
    overflow: hidden;
}
.rh-project-img {
    width: 100%;
    height: 180px;
    overflow: hidden;
    background: var(--rh-primary);
}
.rh-project-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}
.rh-project-card:hover .rh-project-img img {
    transform: scale(1.05);
}
.rh-project-card--img .rh-project-icon {
    margin: 20px 20px 8px;
}
.rh-project-card--img .rh-project-body {
    padding: 0 20px;
}
.rh-project-card--img .rh-project-link {
    margin: 12px 20px 20px;
    display: inline-flex;
}

/* ── Nigeria map ──────────────────────────────── */
.rh-nigeria-map-wrap {
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(10, 30, 110, 0.15);
}
.rh-nigeria-map-img {
    width: 100%;
    height: auto;
    display: block;
}

/* ── Stats Section ───────────────────────────── */
.rh-stats-section {
    background: var(--rh-primary);
    padding: 0;
}
.rh-stat-item {
    text-align: center;
    padding: 50px 24px;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
}
.rh-stat-item--last {
    border-right: none;
}
.rh-stat-item::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: var(--rh-accent);
    transition: width 0.6s;
}
.rh-stat-item:hover::before {
    width: 60%;
}
.rh-stat-number {
    display: flex;
    align-items: baseline;
    justify-content: center;
    line-height: 1;
    margin-bottom: 12px;
}
.rh-stat-number .counter {
    font-size: 56px;
    font-weight: 900;
    color: #ffffff;
    font-family: var(--rh-font-heading);
    line-height: 1;
}
.rh-stat-plus {
    font-size: 32px;
    font-weight: 900;
    color: var(--rh-accent);
    font-family: var(--rh-font-heading);
    margin-left: 2px;
    line-height: 1;
}
.rh-stat-item p {
    color: rgba(255, 255, 255, 0.72);
    font-size: 14px;
    letter-spacing: 0.5px;
    margin-bottom: 0;
    text-transform: uppercase;
    font-weight: 500;
}

/* ── About Section ───────────────────────────── */
.rh-about-section {
    background-color: #ffffff;
}
.rh-about-badge-text {
    display: inline-flex;
    padding: 5px 18px;
    background-color: var(--rh-primary);
    border-radius: 5px;
    color: #ffffff;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.8px;
    margin-bottom: 18px;
    text-transform: uppercase;
}
.about-content h2 {
    font-size: 36px;
    font-family: var(--rh-font-heading);
    font-weight: 800;
    color: var(--rh-primary);
    line-height: 1.25;
    margin-bottom: 18px;
}
.about-content > p {
    color: var(--rh-body-text);
    font-size: 15.5px;
    line-height: 1.8;
    margin-bottom: 0;
}

/* Compliance bullet list */
.rh-compliance-list {
    list-style: none;
    padding: 0;
    margin: 28px 0 0;
}
.rh-compliance-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 13px 16px;
    margin-bottom: 10px;
    background: var(--rh-light-bg);
    border-radius: 10px;
    border-left: 3px solid var(--rh-accent);
    font-size: 15px;
    font-weight: 500;
    color: var(--rh-dark);
    transition: background 0.3s, border-left-color 0.3s;
}
.rh-compliance-list li:last-child {
    margin-bottom: 0;
}
.rh-compliance-list li:hover {
    background: rgba(30, 144, 255, 0.07);
    border-left-color: var(--rh-primary);
}
.rh-compliance-icon {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}
.rh-compliance-icon i {
    font-size: 20px;
    color: var(--rh-accent);
}

/* CTA row under bullets */
.rh-about-actions {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 32px;
}

/* 2×2 stat boxes */
.rh-about-stat-box {
    background: var(--rh-primary);
    border-radius: 16px;
    padding: 32px 24px 28px;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: transform 0.35s ease, box-shadow 0.35s ease;
    /* subtle inner glow */
    box-shadow: 0 8px 32px rgba(10, 30, 110, 0.22);
}
.rh-about-stat-box::before {
    content: '';
    position: absolute;
    top: -40px;
    right: -40px;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: rgba(30, 144, 255, 0.12);
    pointer-events: none;
}
.rh-about-stat-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 18px 48px rgba(10, 30, 110, 0.32);
}
.rh-about-stat-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(30, 144, 255, 0.18);
    border: 1px solid rgba(30, 144, 255, 0.35);
    border-radius: 10px;
    margin: 0 auto 14px;
}
.rh-about-stat-icon i {
    font-size: 18px;
    color: var(--rh-accent);
}
.rh-about-stat-num {
    font-size: 42px;
    font-weight: 900;
    font-family: var(--rh-font-heading);
    color: var(--rh-accent);
    line-height: 1;
    margin-bottom: 10px;
    letter-spacing: -1px;
}
.rh-about-stat-label {
    font-size: 13px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.78);
    line-height: 1.4;
    letter-spacing: 0.2px;
}

/* helper for secondary text link */
.rh-btn-text {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    color: var(--rh-primary);
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    font-family: var(--rh-font-heading);
    transition: gap 0.3s, color 0.3s;
}
.rh-btn-text:hover {
    color: var(--rh-accent);
    gap: 9px;
}

/* ── Featured Projects Slider ────────────────── */
.rh-projects-section .section-title p {
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
}

/* Outer section — give Swiper room for pagination */
.rh-projects-section .swiper {
    padding-bottom: 48px !important;
}

/* Individual slide card */
.rh-project-card {
    background: linear-gradient(145deg, var(--rh-primary) 0%, #0D2A8A 60%, #1240B0 100%);
    border-radius: 16px;
    padding: 36px 30px 30px;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    gap: 0;
    min-height: 300px;
    /* subtle inner border */
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.08),
        0 8px 32px rgba(10, 30, 110, 0.22);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}
.rh-project-card:hover {
    transform: translateY(-6px);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.1),
        0 20px 56px rgba(10, 30, 110, 0.35);
}

/* Decorative circle — top-right corner */
.rh-project-card-deco {
    position: absolute;
    top: -36px;
    right: -36px;
    width: 130px;
    height: 130px;
    border-radius: 50%;
    background: rgba(30, 144, 255, 0.12);
    pointer-events: none;
}
.rh-project-card-deco::after {
    content: '';
    position: absolute;
    inset: 18px;
    border-radius: 50%;
    border: 1px solid rgba(30, 144, 255, 0.2);
}

/* Icon circle */
.rh-project-icon {
    width: 58px;
    height: 58px;
    background: rgba(30, 144, 255, 0.18);
    border: 1px solid rgba(30, 144, 255, 0.38);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 22px;
    transition: background 0.35s, transform 0.35s;
    flex-shrink: 0;
}
.rh-project-card:hover .rh-project-icon {
    background: rgba(30, 144, 255, 0.32);
    transform: scale(1.08);
}
.rh-project-icon i {
    font-size: 26px;
    color: var(--rh-accent);
}

/* Text body */
.rh-project-body {
    flex: 1;
}
.rh-project-body h4 {
    font-size: 18px;
    font-weight: 700;
    font-family: var(--rh-font-heading);
    color: #ffffff;
    margin-bottom: 10px;
    line-height: 1.25;
}
.rh-project-body p {
    font-size: 14px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.70);
    margin-bottom: 0;
}

/* Learn More link */
.rh-project-link {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    color: var(--rh-accent);
    font-size: 13.5px;
    font-weight: 600;
    font-family: var(--rh-font-heading);
    text-decoration: none;
    margin-top: 22px;
    transition: gap 0.3s, color 0.3s;
    /* bottom separator */
    padding-top: 18px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    width: 100%;
}
.rh-project-link:hover {
    color: #ffffff;
    gap: 9px;
}
.rh-project-link i {
    font-size: 15px;
    transition: transform 0.3s;
}
.rh-project-link:hover i {
    transform: translateX(3px);
}

/* Pagination dots colouring (overrides generic swiper) */
.projects-pagination.swiper-pagination {
    bottom: 6px;
}
.projects-pagination .swiper-pagination-bullet {
    background: rgba(10, 30, 110, 0.25);
    opacity: 1;
    width: 8px;
    height: 8px;
    transition: background 0.3s, width 0.3s;
}
.projects-pagination .swiper-pagination-bullet-active {
    background: var(--rh-primary) !important;
    width: 24px;
    border-radius: 4px;
}

/* ── Why Choose — Leadership Quote Slider ───── */
.rh-quote-section {
    background-color: var(--rh-primary);
    padding: 90px 0 80px;
    position: relative;
    overflow: hidden;
}

/* Subtle radial glow behind the slider */
.rh-quote-bg-deco {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 10% 50%, rgba(30, 144, 255, 0.12) 0%, transparent 55%),
        radial-gradient(ellipse at 90% 50%, rgba(30, 144, 255, 0.08) 0%, transparent 55%);
    pointer-events: none;
}

/* Section header */
.rh-quote-header {
    text-align: center;
    margin-bottom: 52px;
}
.rh-quote-section-title {
    font-size: 36px;
    font-weight: 800;
    font-family: var(--rh-font-heading);
    color: #ffffff;
    margin: 14px 0 10px;
    line-height: 1.2;
}
.rh-quote-section-sub {
    color: rgba(255, 255, 255, 0.55);
    font-size: 15px;
    margin-bottom: 0;
}

/* Swiper wrapper — fade effect needs explicit height */
.rh-quote-slider {
    padding-bottom: 52px !important;
}

/* Quote card — sits centred inside the slider */
.rh-quote-card {
    max-width: 820px;
    margin: 0 auto;
    text-align: center;
    padding: 0 20px;
}

/* Large decorative opening quote mark */
.rh-quote-mark {
    font-size: 100px;
    line-height: 0.6;
    font-family: Georgia, serif;
    color: var(--rh-accent);
    opacity: 0.9;
    margin-bottom: 28px;
    display: block;
    user-select: none;
}

/* Quote body */
.rh-quote-text {
    font-size: 21px;
    font-style: italic;
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.90);
    margin: 0 0 36px;
    border: none;
    padding: 0;
}

/* Author row */
.rh-quote-author {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.10);
    border-radius: 50px;
    padding: 10px 24px 10px 10px;
    backdrop-filter: blur(6px);
}

/* Initials circle */
.rh-quote-initials {
    width: 46px;
    height: 46px;
    min-width: 46px;
    background: var(--rh-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    font-weight: 800;
    font-family: var(--rh-font-heading);
    color: #ffffff;
    letter-spacing: 0.5px;
}

/* Name + title */
.rh-quote-meta {
    text-align: left;
}
.rh-quote-meta strong {
    display: block;
    font-size: 15px;
    font-weight: 700;
    color: #ffffff;
    font-family: var(--rh-font-heading);
    line-height: 1.2;
}
.rh-quote-meta span {
    font-size: 12.5px;
    color: rgba(255, 255, 255, 0.55);
    display: block;
    margin-top: 3px;
}

/* Pagination dots */
.rh-quote-pagination.swiper-pagination {
    bottom: 8px;
}
.rh-quote-pagination .swiper-pagination-bullet {
    background: rgba(255, 255, 255, 0.28);
    opacity: 1;
    width: 8px;
    height: 8px;
    transition: background 0.3s, width 0.3s;
}
.rh-quote-pagination .swiper-pagination-bullet-active {
    background: var(--rh-accent) !important;
    width: 28px;
    border-radius: 4px;
}

/* Responsive */
@media (max-width: 767px) {
    .rh-quote-text {
        font-size: 17px;
    }
    .rh-quote-mark {
        font-size: 72px;
    }
    .rh-quote-section-title {
        font-size: 28px;
    }
    .rh-quote-author {
        flex-direction: column;
        border-radius: 16px;
        padding: 16px 20px;
        text-align: center;
    }
    .rh-quote-meta {
        text-align: center;
    }
}

/* ── Why Choose Cards ────────────────────────── */
.rh-wc-card {
    background: #ffffff;
    border-radius: 14px;
    padding: 32px 28px;
    margin-bottom: 25px;
    transition: all 0.4s;
    border: 1px solid var(--rh-silver-light);
    height: calc(100% - 25px);
}
.rh-wc-card:hover {
    background: var(--rh-primary);
    border-color: var(--rh-primary);
    transform: translateY(-5px);
    box-shadow: 0 16px 48px rgba(10, 30, 110, 0.2);
}
.rh-wc-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--rh-primary), var(--rh-accent));
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: background 0.4s;
}
.rh-wc-card:hover .rh-wc-icon {
    background: rgba(255, 255, 255, 0.2);
}
.rh-wc-icon i {
    font-size: 24px;
    color: #ffffff;
}
.rh-wc-card h4 {
    font-size: 16px;
    font-weight: 700;
    color: var(--rh-primary);
    font-family: var(--rh-font-heading);
    margin-bottom: 10px;
    transition: color 0.4s;
}
.rh-wc-card:hover h4 {
    color: #ffffff;
}
.rh-wc-card p {
    font-size: 14px;
    color: var(--rh-body-text);
    margin-bottom: 0;
    line-height: 1.7;
    transition: color 0.4s;
}
.rh-wc-card:hover p {
    color: rgba(255, 255, 255, 0.8);
}

/* ══════════════════════════════════════════════
   NEW TEAM CARDS (team.html)
   ══════════════════════════════════════════════ */

/* Stats strip above cards */
.rh-team-stats-strip {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    background: linear-gradient(135deg, #0A1E6E, #0D2A8A);
    border-radius: 16px;
    margin-top: 40px;
    overflow: hidden;
}
.rh-tss-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 24px 32px;
    flex: 1;
    text-align: center;
    transition: background 0.3s;
}
.rh-tss-item:hover { background: rgba(30,144,255,0.10); }
.rh-tss-num {
    font-size: 32px;
    font-weight: 900;
    font-family: var(--rh-font-heading);
    color: var(--rh-accent);
    line-height: 1;
    margin-bottom: 4px;
}
.rh-tss-lbl {
    font-size: 11px;
    color: rgba(255,255,255,0.55);
    text-transform: uppercase;
    letter-spacing: 0.6px;
    font-weight: 600;
}
.rh-tss-divider {
    width: 1px;
    height: 50px;
    background: rgba(255,255,255,0.10);
    flex-shrink: 0;
}

/* Individual team card */
.rh-tm-card {
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(10,30,110,0.08);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
    height: 100%;
}
.rh-tm-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 56px rgba(10,30,110,0.16);
}

/* Card header — coloured gradient area with avatar */
.rh-tm-header {
    background: linear-gradient(135deg, var(--tc, #0A1E6E) 0%, #1E4DB7 100%);
    padding: 32px 28px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    position: relative;
    overflow: hidden;
}
.rh-tm-header::before {
    content: '';
    position: absolute;
    top: -30px; right: -30px;
    width: 120px; height: 120px;
    border-radius: 50%;
    background: rgba(255,255,255,0.07);
    pointer-events: none;
}
.rh-tm-header::after {
    content: '';
    position: absolute;
    bottom: -20px; left: -20px;
    width: 80px; height: 80px;
    border-radius: 50%;
    background: rgba(255,255,255,0.05);
    pointer-events: none;
}
.rh-tm-avatar-ring {
    width: 72px; height: 72px; min-width: 72px;
    border-radius: 50%;
    border: 3px solid rgba(255,255,255,0.30);
    padding: 3px;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
}
.rh-tm-avatar-lg {
    width: 100%; height: 100%;
    border-radius: 50%;
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(4px);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    font-weight: 900;
    font-family: var(--rh-font-heading);
    color: #ffffff;
    letter-spacing: 1px;
}
.rh-tm-header-meta {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 6px;
    position: relative;
    z-index: 1;
}
.rh-tm-exp-badge,
.rh-tm-cert-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: rgba(255,255,255,0.15);
    border: 1px solid rgba(255,255,255,0.25);
    border-radius: 50px;
    padding: 4px 12px;
    font-size: 11px;
    font-weight: 700;
    font-family: var(--rh-font-heading);
    color: #ffffff;
    white-space: nowrap;
}
.rh-tm-exp-badge i, .rh-tm-cert-badge i { font-size: 12px; }

/* Card body */
.rh-tm-body {
    padding: 24px 26px 28px;
}
.rh-tm-name {
    font-size: 18px;
    font-weight: 800;
    font-family: var(--rh-font-heading);
    color: var(--rh-primary);
    margin-bottom: 4px;
    line-height: 1.25;
}
.rh-tm-role {
    font-size: 13px;
    font-weight: 600;
    color: var(--rh-accent);
    margin-bottom: 16px;
    line-height: 1.4;
}
.rh-tm-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 16px;
}
.rh-tm-tags span {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: var(--rh-light-bg);
    border: 1px solid #E0E6F0;
    border-radius: 50px;
    padding: 4px 12px;
    font-size: 11.5px;
    font-weight: 600;
    font-family: var(--rh-font-heading);
    color: var(--rh-primary);
    transition: background 0.25s, border-color 0.25s;
}
.rh-tm-card:hover .rh-tm-tags span {
    background: rgba(30,144,255,0.07);
    border-color: rgba(30,144,255,0.22);
}
.rh-tm-tags span i { font-size: 12px; color: var(--rh-accent); }
.rh-tm-desc {
    font-size: 13.5px;
    color: var(--rh-body-text);
    line-height: 1.7;
    margin-bottom: 0;
}

@media (max-width: 991px) {
    .rh-tss-item { padding: 18px 20px; }
    .rh-tss-num { font-size: 26px; }
    .rh-tm-header { flex-wrap: wrap; }
    .rh-tm-header-meta { align-items: flex-start; }
}
@media (max-width: 575px) {
    .rh-team-stats-strip { flex-wrap: wrap; }
    .rh-tss-divider { display: none; }
    .rh-tss-item { flex: 0 0 50%; padding: 16px; }
}

/* ── Management Team Cards (legacy small cards) ── */
.rh-team-card {
    background: #ffffff;
    border-radius: 14px;
    border-top: 3px solid var(--rh-primary);
    padding: 32px 24px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    height: 100%;
    transition: transform 0.35s ease, box-shadow 0.35s ease;
    box-shadow: 0 2px 16px rgba(10, 30, 110, 0.06);
}
.rh-team-card:hover {
    transform: translateY(-7px);
    box-shadow: 0 20px 52px rgba(10, 30, 110, 0.14);
}

/* Initials avatar */
.rh-team-avatar {
    width: 72px;
    height: 72px;
    background: var(--rh-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    font-weight: 800;
    font-family: var(--rh-font-heading);
    color: #ffffff;
    letter-spacing: 1px;
    margin-bottom: 20px;
    flex-shrink: 0;
    /* subtle ring */
    box-shadow: 0 0 0 4px rgba(30, 144, 255, 0.18);
    transition: box-shadow 0.35s;
}
.rh-team-card:hover .rh-team-avatar {
    box-shadow: 0 0 0 6px rgba(30, 144, 255, 0.30);
}

/* Body — fills remaining height */
.rh-team-body {
    flex: 1;
    width: 100%;
}

/* Name */
.rh-team-name {
    font-size: 15.5px;
    font-weight: 700;
    font-family: var(--rh-font-heading);
    color: var(--rh-dark);
    line-height: 1.3;
    margin-bottom: 6px;
}

/* Role title */
.rh-team-title {
    font-size: 13px;
    font-weight: 600;
    color: var(--rh-accent);
    margin-bottom: 16px;
    line-height: 1.4;
}

/* Credential lines */
.rh-team-creds {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 14px;
}
.rh-team-creds span {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    font-size: 12px;
    color: var(--rh-body-text);
    line-height: 1.4;
}
.rh-team-creds i {
    font-size: 13px;
    color: var(--rh-primary);
    flex-shrink: 0;
}

/* Experience badge */
.rh-team-exp {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 12px;
    font-weight: 600;
    color: var(--rh-primary);
    background: var(--rh-light-bg);
    padding: 5px 12px;
    border-radius: 20px;
    border: 1px solid rgba(10, 30, 110, 0.10);
    margin-bottom: 6px;
}
.rh-team-exp i {
    font-size: 13px;
}

/* Footer: LinkedIn */
.rh-team-footer {
    width: 100%;
    padding-top: 16px;
    margin-top: auto;
    border-top: 1px solid var(--rh-silver-light);
    display: flex;
    justify-content: center;
}
.rh-team-linkedin {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: var(--rh-light-bg);
    border: 1px solid var(--rh-silver-light);
    border-radius: 8px;
    color: var(--rh-primary);
    text-decoration: none;
    font-size: 18px;
    transition: background 0.3s, color 0.3s, border-color 0.3s;
}
.rh-team-linkedin:hover {
    background: #0A66C2;
    border-color: #0A66C2;
    color: #ffffff;
}

/* ── Sectors ─────────────────────────────────── */
.rh-sectors-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}
.rh-sector-badge {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 11px 20px;
    background: linear-gradient(135deg, var(--rh-primary), var(--rh-primary-mid));
    color: #ffffff !important;
    border-radius: 50px;
    font-size: 13.5px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.35s;
    font-family: var(--rh-font-heading);
    letter-spacing: 0.2px;
}
.rh-sector-badge:hover {
    background: linear-gradient(135deg, var(--rh-accent), var(--rh-accent-dark));
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 6px 20px rgba(30, 144, 255, 0.3);
}

/* ── RockHaven Advantage Section ─────────────── */
.rh-advantage-section {
    background: var(--rh-light-bg);
    padding: 90px 0 80px;
}
.rh-advantage-title {
    font-size: 38px;
    font-weight: 800;
    font-family: var(--rh-font-heading);
    color: var(--rh-primary);
    margin: 14px 0 10px;
    line-height: 1.2;
}
.rh-advantage-sub {
    color: var(--rh-body-text);
    font-size: 16px;
    margin-bottom: 0;
}

/* Metric cards (top row) */
.rh-adv-card {
    background: #fff;
    border-radius: 18px;
    padding: 36px 28px;
    text-align: center;
    height: 100%;
    border: 1px solid var(--rh-silver-light);
    border-top: 4px solid var(--rh-primary);
    position: relative;
    overflow: hidden;
    transition: transform 0.35s ease, box-shadow 0.35s ease;
    box-shadow: 0 4px 20px rgba(10,30,110,0.06);
}
.rh-adv-card::before {
    content: '';
    position: absolute;
    top: -30px; right: -30px;
    width: 100px; height: 100px;
    border-radius: 50%;
    background: rgba(30,144,255,0.05);
    pointer-events: none;
}
.rh-adv-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 56px rgba(10,30,110,0.14);
}
.rh-adv-card--dark {
    background: linear-gradient(145deg, var(--rh-primary) 0%, #0D2A8A 100%);
    border-top-color: var(--rh-accent);
}
.rh-adv-card--dark .rh-adv-num,
.rh-adv-card--dark .rh-adv-label { color: #fff; }
.rh-adv-card--dark .rh-adv-desc  { color: rgba(255,255,255,0.70); }
.rh-adv-card--dark .rh-adv-icon  { color: rgba(255,255,255,0.90); }

.rh-adv-icon-wrap {
    position: relative;
    width: 70px; height: 70px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.rh-adv-icon-ring {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    border: 1.5px dashed rgba(30,144,255,0.30);
    animation: rh-ring-spin 12s linear infinite;
}
@keyframes rh-ring-spin {
    from { transform: rotate(0deg); }
    to   { transform: rotate(360deg); }
}
.rh-adv-icon {
    font-size: 30px;
    color: var(--rh-accent);
    position: relative;
    z-index: 1;
}
.rh-adv-num {
    font-size: 46px;
    font-weight: 900;
    font-family: var(--rh-font-heading);
    color: var(--rh-primary);
    line-height: 1;
    margin-bottom: 8px;
}
.rh-adv-label {
    font-size: 15px;
    font-weight: 700;
    font-family: var(--rh-font-heading);
    color: var(--rh-primary);
    margin-bottom: 12px;
    line-height: 1.3;
}
.rh-adv-desc {
    font-size: 13.5px;
    color: var(--rh-body-text);
    line-height: 1.65;
    margin-bottom: 0;
}

/* Feature cards (bottom row) */
.rh-adv-feature {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    background: #fff;
    border-radius: 14px;
    padding: 24px;
    border: 1px solid var(--rh-silver-light);
    height: 100%;
    transition: box-shadow 0.3s, transform 0.3s;
    box-shadow: 0 2px 12px rgba(10,30,110,0.05);
}
.rh-adv-feature:hover {
    box-shadow: 0 12px 36px rgba(10,30,110,0.12);
    transform: translateY(-4px);
}
.rh-adv-feature-icon {
    width: 52px; height: 52px; min-width: 52px;
    background: linear-gradient(135deg, var(--rh-primary), var(--rh-accent));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.rh-adv-feature-icon i {
    font-size: 22px;
    color: #fff;
}
.rh-adv-feature h5 {
    font-size: 15px;
    font-weight: 700;
    font-family: var(--rh-font-heading);
    color: var(--rh-primary);
    margin-bottom: 6px;
}
.rh-adv-feature p {
    font-size: 13.5px;
    color: var(--rh-body-text);
    margin-bottom: 0;
    line-height: 1.65;
}

@media (max-width: 767px) {
    .rh-advantage-title { font-size: 28px; }
}

/* ── Coverage Header & Zone Pills ─────────────── */
.rh-coverage-header {
    display: flex;
    align-items: center;
    gap: 24px;
    background: linear-gradient(135deg, var(--rh-primary), #0D2A8A);
    border-radius: 14px;
    padding: 20px 26px;
    box-shadow: 0 6px 24px rgba(10,30,110,0.22);
}
.rh-coverage-total {
    display: flex;
    align-items: center;
    gap: 14px;
}
.rh-coverage-num {
    font-size: 54px;
    font-weight: 900;
    font-family: var(--rh-font-heading);
    color: var(--rh-accent);
    line-height: 1;
}
.rh-coverage-text strong {
    display: block;
    font-size: 16px;
    font-weight: 700;
    color: #fff;
    font-family: var(--rh-font-heading);
}
.rh-coverage-text span {
    font-size: 11px;
    color: rgba(255,255,255,0.55);
    text-transform: uppercase;
    letter-spacing: 0.6px;
}
.rh-coverage-zones-label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13.5px;
    font-weight: 600;
    color: rgba(255,255,255,0.78);
    padding-left: 24px;
    border-left: 1px solid rgba(255,255,255,0.14);
    font-family: var(--rh-font-heading);
}
.rh-coverage-zones-label i {
    color: var(--rh-accent);
    font-size: 17px;
}

/* Zone pills grid */
.rh-zones-showcase {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 11px;
}
.rh-zone-pill {
    display: flex;
    align-items: center;
    gap: 11px;
    background: #fff;
    border: 1px solid var(--rh-silver-light);
    border-left: 3px solid var(--rh-accent);
    border-radius: 10px;
    padding: 12px 14px;
    cursor: default;
    transition: transform 0.3s, box-shadow 0.3s, border-left-color 0.3s;
    box-shadow: 0 2px 8px rgba(10,30,110,0.04);
}
.rh-zone-pill:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(10,30,110,0.12);
    border-left-color: var(--rh-primary);
}
.rh-zone-pill-icon {
    width: 34px; height: 34px; min-width: 34px;
    background: var(--rh-light-bg);
    border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
}
.rh-zone-pill-icon i { font-size: 15px; color: var(--rh-primary); }
.rh-zone-pill-body strong {
    display: block;
    font-size: 11.5px;
    font-weight: 700;
    font-family: var(--rh-font-heading);
    color: var(--rh-primary);
    line-height: 1.2;
}
.rh-zone-pill-body span {
    font-size: 10.5px;
    color: var(--rh-body-text);
    line-height: 1.3;
    display: block;
}

/* ── Sector Infographic Cards ─────────────────── */
.rh-sector-deck-label {
    font-size: 11px;
    font-weight: 700;
    font-family: var(--rh-font-heading);
    color: var(--rh-body-text);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 12px;
}
.rh-sector-infographic-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 10px;
}
.rh-sector-icard {
    background: #fff;
    border-radius: 12px;
    padding: 16px 8px 14px;
    text-align: center;
    border: 1px solid var(--rh-silver-light);
    border-top: 3px solid var(--sc, var(--rh-primary));
    cursor: default;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(10,30,110,0.04);
}
.rh-sector-icard:hover {
    transform: translateY(-5px);
    background: var(--sc, var(--rh-primary));
    box-shadow: 0 12px 30px rgba(10,30,110,0.20);
    border-color: var(--sc, var(--rh-primary));
}
.rh-sector-icard-icon {
    width: 42px; height: 42px;
    margin: 0 auto 10px;
    background: var(--rh-light-bg);
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    transition: background 0.3s;
}
.rh-sector-icard:hover .rh-sector-icard-icon {
    background: rgba(255,255,255,0.20);
}
.rh-sector-icard-icon i {
    font-size: 19px;
    color: var(--sc, var(--rh-primary));
    transition: color 0.3s;
}
.rh-sector-icard:hover .rh-sector-icard-icon i { color: #fff; }
.rh-sector-icard span {
    font-size: 10px;
    font-weight: 700;
    font-family: var(--rh-font-heading);
    color: var(--rh-primary);
    line-height: 1.3;
    display: block;
    transition: color 0.3s;
}
.rh-sector-icard:hover span { color: #fff; }

@media (max-width: 991px) {
    .rh-zones-showcase { grid-template-columns: repeat(2, 1fr); }
    .rh-sector-infographic-grid { grid-template-columns: repeat(4, 1fr); }
    .rh-coverage-header { gap: 16px; }
}
@media (max-width: 767px) {
    .rh-sector-infographic-grid { grid-template-columns: repeat(3, 1fr); }
    .rh-coverage-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 14px;
    }
    .rh-coverage-zones-label {
        border-left: none;
        padding-left: 0;
        border-top: 1px solid rgba(255,255,255,0.14);
        padding-top: 14px;
        width: 100%;
    }
}
@media (max-width: 480px) {
    .rh-zones-showcase { grid-template-columns: repeat(2, 1fr); }
    .rh-sector-infographic-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ── CTA Band ─────────────────────────────────── */
.rh-cta-band {
    background: linear-gradient(135deg, var(--rh-primary) 0%, #1240B0 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}
.rh-cta-band::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(30, 144, 255, 0.12) 0%, transparent 70%);
    border-radius: 50%;
}
.rh-cta-title {
    color: #ffffff;
    font-size: 36px;
    font-weight: 800;
    font-family: var(--rh-font-heading);
    margin-bottom: 14px;
}
.rh-cta-desc {
    color: rgba(255, 255, 255, 0.78);
    font-size: 16px;
    margin-bottom: 0;
    max-width: 580px;
}
.rh-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 16px 36px;
    background: #ffffff;
    color: var(--rh-primary) !important;
    border-radius: 50px;
    font-weight: 700;
    font-family: var(--rh-font-heading);
    text-decoration: none;
    font-size: 14px;
    transition: all 0.4s;
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.15);
}
.rh-cta-btn:hover {
    background: var(--rh-accent);
    color: #ffffff !important;
    transform: translateY(-2px);
    box-shadow: 0 10px 32px rgba(30, 144, 255, 0.3);
}

/* ── Testimonials ────────────────────────────── */
.rh-testimonials-intro {
    color: var(--rh-body-text);
    font-size: 15.5px;
    line-height: 1.8;
    margin-bottom: 0;
}
.rh-testimonial-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 36px;
    box-shadow: 0 4px 24px rgba(10, 30, 110, 0.08);
    height: 100%;
    border-bottom: 3px solid transparent;
    transition: border-color 0.4s, transform 0.4s;
}
.rh-testimonial-card:hover {
    border-bottom-color: var(--rh-accent);
    transform: translateY(-4px);
}
.rh-stars {
    display: flex;
    gap: 3px;
    margin-bottom: 18px;
}
.rh-stars i {
    color: #F5A623;
    font-size: 16px;
}
.rh-testimonial-text {
    color: var(--rh-body-text);
    font-size: 15.5px;
    line-height: 1.8;
    font-style: italic;
    margin-bottom: 24px;
}
.rh-testimonial-author {
    display: flex;
    align-items: center;
    gap: 14px;
}
.rh-testimonial-author img {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--rh-light-bg);
}
.rh-testimonial-author strong {
    display: block;
    font-size: 15px;
    font-weight: 700;
    color: var(--rh-primary);
    font-family: var(--rh-font-heading);
}
.rh-testimonial-author span {
    font-size: 13px;
    color: var(--rh-body-text);
    display: block;
    margin-top: 3px;
}
.rh-pagination {
    position: relative;
    margin-top: 32px;
}
.rh-pagination .swiper-pagination-bullet {
    background: var(--rh-silver);
}
.rh-pagination .swiper-pagination-bullet-active {
    background: var(--rh-primary);
}
.swiper-pagination-bullet-active {
    background: var(--rh-primary) !important;
}

/* ── Clients & Partners Section ──────────────── */
.rh-clients-section {
    background-color: #F5F7FA;
    padding: 60px 0 52px;
    border-top: 1px solid var(--rh-silver-light);
}

/* Header */
.rh-clients-header {
    text-align: center;
    margin-bottom: 42px;
}
.rh-clients-label {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-size: 12px;
    font-weight: 700;
    color: var(--rh-accent);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
}
.rh-clients-label i {
    font-size: 14px;
}
.rh-clients-title {
    font-size: 30px;
    font-weight: 800;
    font-family: var(--rh-font-heading);
    color: var(--rh-primary);
    margin-bottom: 0;
}

/* Swiper container — no extra padding needed */
.rh-clients-section .swiper {
    padding: 6px 0 10px;
}

/* Individual partner logo pill */
.rh-partner-logo {
    padding: 14px 22px;
    background: #ffffff;
    border-radius: 10px;
    font-weight: 800;
    font-family: var(--rh-font-heading);
    color: var(--rh-primary);
    font-size: 13px;
    letter-spacing: 0.5px;
    text-align: center;
    line-height: 1.4;
    transition: background 0.3s, color 0.3s, border-color 0.3s, transform 0.3s, box-shadow 0.3s;
    border: 1px solid #e0e6f0;
    box-shadow: 0 2px 8px rgba(10, 30, 110, 0.05);
    cursor: default;
}
.rh-partner-logo:hover {
    background: var(--rh-primary);
    color: #ffffff;
    border-color: var(--rh-primary);
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(10, 30, 110, 0.18);
}

/* ── Achievement Stats Banner ─────────────────── */
.rh-achieve-banner {
    background: var(--rh-primary);
    /* subtle top stripe in accent */
    border-top: 3px solid var(--rh-accent);
}
.rh-achieve-item {
    text-align: center;
    padding: 44px 20px 40px;
    border-right: 1px solid rgba(255, 255, 255, 0.08);
    position: relative;
    transition: background 0.3s;
}
.rh-achieve-item--last {
    border-right: none;
}
.rh-achieve-item:hover {
    background: rgba(30, 144, 255, 0.06);
}
/* Animated underline on hover */
.rh-achieve-item::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--rh-accent);
    transition: width 0.5s ease;
}
.rh-achieve-item:hover::after {
    width: 50%;
}

/* Number row — prefix + counter + suffix sit inline */
.rh-achieve-num {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 1px;
    line-height: 1;
    margin-bottom: 12px;
}
.rh-achieve-num .counter {
    font-size: 52px;
    font-weight: 900;
    color: var(--rh-accent);
    font-family: var(--rh-font-heading);
    line-height: 1;
}
.rh-achieve-prefix {
    font-size: 28px;
    font-weight: 700;
    color: var(--rh-accent);
    font-family: var(--rh-font-heading);
    line-height: 1;
    align-self: flex-start;
    margin-top: 6px;
}
.rh-achieve-suffix {
    font-size: 26px;
    font-weight: 800;
    color: var(--rh-accent);
    font-family: var(--rh-font-heading);
    line-height: 1;
    align-self: flex-end;
    margin-bottom: 4px;
}
.rh-achieve-item p {
    color: rgba(255, 255, 255, 0.70);
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.3px;
    margin-bottom: 0;
    text-transform: uppercase;
}

/* ══════════════════════════════════════════════
   PROVEN TRACK RECORD SECTION
   ══════════════════════════════════════════════ */
.rh-track-section {
    background: linear-gradient(160deg, #04102E 0%, #0A1E6E 50%, #04102E 100%);
    padding: 100px 0 80px;
    position: relative;
    overflow: hidden;
}

/* Background orbs */
.rh-track-bg-deco { position: absolute; inset: 0; pointer-events: none; }
.rh-track-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.15;
}
.rh-track-orb--1 {
    width: 500px; height: 500px;
    background: var(--rh-accent);
    top: -150px; right: -100px;
}
.rh-track-orb--2 {
    width: 400px; height: 400px;
    background: #4F46E5;
    bottom: -100px; left: -80px;
}

/* Section heading */
.rh-track-title {
    font-size: 42px;
    font-weight: 900;
    font-family: var(--rh-font-heading);
    color: #ffffff;
    line-height: 1.15;
    margin: 14px 0 14px;
}
.rh-track-sub {
    color: rgba(255,255,255,0.60);
    font-size: 16px;
    max-width: 600px;
    margin: 0 auto;
}

/* ── Portfolio Bar Chart ───────────────────────── */
.rh-portfolio-chart {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.09);
    border-radius: 20px;
    padding: 32px 36px;
    backdrop-filter: blur(8px);
    margin-bottom: 40px;
}

.rh-portfolio-chart-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 32px;
    flex-wrap: wrap;
}
.rh-portfolio-chart-title {
    font-size: 16px;
    font-weight: 700;
    font-family: var(--rh-font-heading);
    color: #ffffff;
    margin-bottom: 4px;
    display: flex;
    align-items: center;
    gap: 8px;
}
.rh-portfolio-chart-title i { color: var(--rh-accent); font-size: 18px; }
.rh-portfolio-chart-sub { font-size: 12px; color: rgba(255,255,255,0.45); margin: 0; }

.rh-portfolio-total-badge {
    background: rgba(30,144,255,0.15);
    border: 1px solid rgba(30,144,255,0.30);
    border-radius: 12px;
    padding: 12px 20px;
    text-align: center;
    flex-shrink: 0;
}
.rh-portfolio-total-num {
    display: block;
    font-size: 24px;
    font-weight: 900;
    font-family: var(--rh-font-heading);
    color: var(--rh-accent);
    line-height: 1;
}
.rh-portfolio-total-label {
    display: block;
    font-size: 10px;
    color: rgba(255,255,255,0.50);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 4px;
}

/* Bar rows */
.rh-bar-chart { display: flex; flex-direction: column; gap: 18px; }

.rh-bar-item { display: flex; flex-direction: column; gap: 6px; }

.rh-bar-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}
.rh-bar-client {
    font-size: 13px;
    font-weight: 700;
    font-family: var(--rh-font-heading);
    color: #ffffff;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 55%;
}
.rh-bar-tag {
    font-size: 11px;
    color: rgba(255,255,255,0.45);
    text-align: right;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.rh-bar-wrap {
    display: flex;
    align-items: center;
    gap: 14px;
}
.rh-bar-track {
    flex: 1;
    height: 12px;
    background: rgba(255,255,255,0.07);
    border-radius: 6px;
    overflow: hidden;
}
.rh-bar-fill {
    height: 100%;
    border-radius: 6px;
    background: var(--bc, var(--rh-accent));
    width: 0%;
    transition: width 1.1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    box-shadow: 0 0 12px rgba(255,255,255,0.12);
}
.rh-bar-fill::after {
    content: '';
    position: absolute;
    right: 0; top: 0; bottom: 0;
    width: 3px;
    background: rgba(255,255,255,0.5);
    border-radius: 0 6px 6px 0;
    opacity: 0;
    transition: opacity 0.4s ease 1s;
}
.rh-bar-fill[style*="width: 0%"]::after { opacity: 0; }
.rh-bar-value {
    font-size: 13px;
    font-weight: 700;
    font-family: var(--rh-font-heading);
    color: var(--bc, var(--rh-accent));
    white-space: nowrap;
    min-width: 72px;
    text-align: right;
}

/* ── Contract Cards ───────────────────────────── */
.rh-contract-card {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.10);
    border-radius: 18px;
    padding: 28px 26px 24px;
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 0;
    backdrop-filter: blur(6px);
    transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
    position: relative;
    overflow: hidden;
}
.rh-contract-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, rgba(30,144,255,0.5), transparent);
    transition: opacity 0.35s;
}
.rh-contract-card:hover {
    transform: translateY(-7px);
    border-color: rgba(30,144,255,0.30);
    box-shadow: 0 20px 60px rgba(0,0,0,0.35);
}
.rh-contract-card--featured {
    background: linear-gradient(145deg, rgba(30,144,255,0.12), rgba(10,30,110,0.25));
    border-color: rgba(30,144,255,0.30);
}
.rh-contract-card--featured::before {
    background: linear-gradient(90deg, #1E90FF, #00C49F);
    opacity: 1;
}

/* Card header row */
.rh-contract-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}
.rh-contract-icon {
    width: 48px; height: 48px;
    background: rgba(255,255,255,0.07);
    border: 1.5px solid rgba(255,255,255,0.14);
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
    transition: background 0.3s;
}
.rh-contract-card:hover .rh-contract-icon {
    background: rgba(30,144,255,0.18);
    border-color: rgba(30,144,255,0.35);
}
.rh-contract-icon i {
    font-size: 22px;
    color: var(--ci, #1E90FF);
}
.rh-contract-featured-pill {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: rgba(30,144,255,0.20);
    border: 1px solid rgba(30,144,255,0.35);
    border-radius: 50px;
    padding: 4px 12px;
    font-size: 11px;
    font-weight: 700;
    font-family: var(--rh-font-heading);
    color: #60B0FF;
    letter-spacing: 0.3px;
}
.rh-contract-featured-pill i { font-size: 12px; color: #FFBB28; }

/* Content */
.rh-contract-client {
    font-size: 16px;
    font-weight: 800;
    font-family: var(--rh-font-heading);
    color: #ffffff;
    line-height: 1.25;
    margin-bottom: 6px;
}
.rh-contract-amount {
    font-size: 32px;
    font-weight: 900;
    font-family: var(--rh-font-heading);
    color: var(--rh-accent);
    line-height: 1;
    margin-bottom: 14px;
    letter-spacing: -1px;
}
.rh-contract-desc {
    font-size: 13.5px;
    color: rgba(255,255,255,0.60);
    line-height: 1.7;
    flex: 1;
    margin-bottom: 20px;
}
.rh-contract-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding-top: 16px;
    border-top: 1px solid rgba(255,255,255,0.08);
    font-size: 12px;
    color: rgba(255,255,255,0.45);
    font-weight: 500;
    flex-wrap: wrap;
}
.rh-contract-footer span {
    display: inline-flex;
    align-items: center;
    gap: 5px;
}
.rh-contract-footer i { font-size: 13px; color: var(--rh-accent); }
.rh-contract-zone {
    background: rgba(30,144,255,0.12);
    border-radius: 20px;
    padding: 3px 10px;
    color: rgba(255,255,255,0.60) !important;
}

/* ── Mini Contracts List ──────────────────────── */
.rh-mini-contracts {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 40px;
}
.rh-mini-contract {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 24px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    transition: background 0.25s;
}
.rh-mini-contract:last-child { border-bottom: none; }
.rh-mini-contract:hover { background: rgba(30,144,255,0.06); }

.rh-mini-icon {
    width: 40px; height: 40px; min-width: 40px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
    transition: background 0.25s;
}
.rh-mini-contract:hover .rh-mini-icon {
    background: rgba(30,144,255,0.15);
}
.rh-mini-icon i { font-size: 18px; color: var(--mc, #1E90FF); }

.rh-mini-body { flex: 1; min-width: 0; }
.rh-mini-client {
    display: block;
    font-size: 13px;
    font-weight: 700;
    font-family: var(--rh-font-heading);
    color: #ffffff;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.rh-mini-desc {
    display: block;
    font-size: 12px;
    color: rgba(255,255,255,0.45);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.rh-mini-right { text-align: right; flex-shrink: 0; }
.rh-mini-value {
    display: block;
    font-size: 15px;
    font-weight: 800;
    font-family: var(--rh-font-heading);
    color: var(--rh-accent);
    line-height: 1.2;
}
.rh-mini-year {
    display: block;
    font-size: 11px;
    color: rgba(255,255,255,0.35);
}

/* ── Impact Metrics Strip ─────────────────────── */
.rh-track-metrics {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.09);
    border-radius: 18px;
    padding: 0;
    overflow: hidden;
    flex-wrap: wrap;
}
.rh-track-metric {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 32px 40px;
    flex: 1;
    min-width: 160px;
    text-align: center;
    transition: background 0.3s;
}
.rh-track-metric:hover { background: rgba(30,144,255,0.06); }
.rh-track-metric-icon {
    width: 40px; height: 40px;
    background: rgba(30,144,255,0.15);
    border: 1px solid rgba(30,144,255,0.25);
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 2px;
}
.rh-track-metric-icon i { font-size: 18px; color: var(--rh-accent); }
.rh-track-metric-num {
    font-size: 36px;
    font-weight: 900;
    font-family: var(--rh-font-heading);
    color: #ffffff;
    line-height: 1;
}
.rh-track-metric-num .counter { color: var(--rh-accent); }
.rh-track-metric-label {
    font-size: 12px;
    color: rgba(255,255,255,0.48);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 500;
}
.rh-track-metric-divider {
    width: 1px;
    height: 80px;
    background: rgba(255,255,255,0.08);
    flex-shrink: 0;
}

/* Track section responsive */
@media (max-width: 991px) {
    .rh-track-title { font-size: 34px; }
    .rh-portfolio-chart { padding: 24px 20px; }
    .rh-bar-client { max-width: 45%; font-size: 12px; }
    .rh-track-metric { padding: 24px 20px; }
    .rh-track-metric-num { font-size: 28px; }
    .rh-track-metric-divider { height: 60px; }
}
@media (max-width: 767px) {
    .rh-track-title { font-size: 26px; }
    .rh-track-section { padding: 70px 0 60px; }
    .rh-portfolio-chart-header { flex-direction: column; gap: 14px; }
    .rh-portfolio-total-badge { align-self: flex-start; }
    .rh-bar-tag { display: none; }
    .rh-bar-client { max-width: 100%; }
    .rh-track-metrics { flex-wrap: wrap; }
    .rh-track-metric { flex: 0 0 50%; min-width: 0; padding: 22px 14px; }
    .rh-track-metric-divider { display: none; }
    .rh-mini-contract { padding: 14px 16px; gap: 12px; }
    .rh-contract-amount { font-size: 26px; }
}
@media (max-width: 480px) {
    .rh-track-metric { flex: 0 0 100%; border-bottom: 1px solid rgba(255,255,255,0.06); }
}

/* ── Contact Info Cards ──────────────────────── */
.rh-contact-info-row {
    display: flex;
    align-items: stretch;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
    margin: 36px 0 32px;
}
.rh-cic {
    display: flex;
    align-items: center;
    gap: 14px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.14);
    border-radius: 14px;
    padding: 16px 22px;
    text-decoration: none;
    transition: background 0.3s, border-color 0.3s, transform 0.3s;
    min-width: 200px;
    flex: 1;
    max-width: 260px;
    backdrop-filter: blur(6px);
}
.rh-cic:hover {
    background: rgba(30,144,255,0.18);
    border-color: rgba(30,144,255,0.45);
    transform: translateY(-3px);
}
.rh-cic--static { cursor: default; }
.rh-cic--static:hover { transform: none; }
.rh-cic-icon {
    width: 44px; height: 44px; min-width: 44px;
    background: rgba(30,144,255,0.20);
    border: 1px solid rgba(30,144,255,0.35);
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
}
.rh-cic-icon i { font-size: 20px; color: var(--rh-accent); }
.rh-cic-body { text-align: left; }
.rh-cic-label {
    display: block;
    font-size: 11px;
    color: rgba(255,255,255,0.48);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
    margin-bottom: 3px;
}
.rh-cic-value {
    display: block;
    font-size: 14px;
    font-weight: 700;
    font-family: var(--rh-font-heading);
    color: #ffffff;
    line-height: 1.2;
}

/* Profile button */
.rh-cta-profile-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 30px;
    border-radius: 50px;
    border: 2px solid rgba(255,255,255,0.30);
    background: rgba(255,255,255,0.07);
    color: #ffffff !important;
    font-weight: 700;
    font-family: var(--rh-font-heading);
    font-size: 14px;
    cursor: pointer;
    transition: all 0.35s;
    backdrop-filter: blur(4px);
}
.rh-cta-profile-btn i { font-size: 18px; color: #FF6B6B; }
.rh-cta-profile-btn:hover {
    background: rgba(255,255,255,0.15);
    border-color: rgba(255,255,255,0.55);
    transform: translateY(-2px);
}

/* ── Company Profile Modal ───────────────────── */
.rh-profile-modal {
    background: #ffffff;
    border-radius: 20px;
    border: none;
    overflow: hidden;
    box-shadow: 0 24px 80px rgba(10,30,110,0.30);
}
.rh-pm-header {
    display: flex;
    align-items: center;
    gap: 16px;
    background: linear-gradient(135deg, var(--rh-primary) 0%, #0D2A8A 100%);
    padding: 22px 24px;
}
.rh-pm-header-icon {
    width: 52px; height: 52px; min-width: 52px;
    background: rgba(255,255,255,0.12);
    border: 1.5px solid rgba(255,255,255,0.20);
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
}
.rh-pm-header-icon i { font-size: 26px; color: #FF6B6B; }
.rh-pm-header-text { flex: 1; }
.rh-pm-header-text h5 {
    font-size: 17px;
    font-weight: 800;
    font-family: var(--rh-font-heading);
    color: #ffffff;
    margin: 0 0 4px;
    line-height: 1.2;
}
.rh-pm-header-text span {
    font-size: 12px;
    color: rgba(255,255,255,0.55);
    letter-spacing: 0.3px;
}
.rh-pm-close {
    width: 34px; height: 34px;
    background: rgba(255,255,255,0.12);
    border: none;
    border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
    cursor: pointer;
    transition: background 0.2s;
    flex-shrink: 0;
}
.rh-pm-close i { font-size: 18px; color: rgba(255,255,255,0.80); }
.rh-pm-close:hover { background: rgba(255,255,255,0.22); }

.rh-pm-body { padding: 28px 28px 24px; }

.rh-pm-preview-strip {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    background: var(--rh-light-bg);
    border-left: 3px solid var(--rh-accent);
    border-radius: 0 10px 10px 0;
    padding: 14px 16px;
    margin-bottom: 22px;
    font-size: 14px;
    color: var(--rh-body-text);
    line-height: 1.6;
}
.rh-pm-preview-strip i {
    font-size: 22px;
    color: var(--rh-primary);
    flex-shrink: 0;
    margin-top: 1px;
}

.rh-pm-highlights {
    list-style: none;
    padding: 0;
    margin: 0 0 28px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.rh-pm-highlights li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: var(--rh-dark);
    font-weight: 500;
}
.rh-pm-highlights i {
    font-size: 16px;
    color: var(--rh-accent);
    flex-shrink: 0;
}

.rh-pm-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}
.rh-pm-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 13px 28px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 700;
    font-family: var(--rh-font-heading);
    text-decoration: none;
    transition: all 0.3s;
    flex: 1;
    justify-content: center;
}
.rh-pm-btn--view {
    background: var(--rh-light-bg);
    color: var(--rh-primary) !important;
    border: 2px solid var(--rh-silver-light);
}
.rh-pm-btn--view:hover {
    background: var(--rh-primary);
    color: #ffffff !important;
    border-color: var(--rh-primary);
    transform: translateY(-2px);
}
.rh-pm-btn--download {
    background: var(--rh-primary);
    color: #ffffff !important;
    border: 2px solid var(--rh-primary);
}
.rh-pm-btn--download:hover {
    background: var(--rh-accent);
    border-color: var(--rh-accent);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(30,144,255,0.35);
}

@media (max-width: 575px) {
    .rh-contact-info-row { flex-direction: column; align-items: center; }
    .rh-cic { max-width: 100%; width: 100%; }
    .rh-cta-profile-btn { width: 100%; max-width: 320px; justify-content: center; }
    .rh-pm-body { padding: 20px 18px 18px; }
    .rh-pm-actions { flex-direction: column; }
    .rh-pm-btn { width: 100%; }
}

/* ── Contact CTA Section ─────────────────────── */
.rh-cta-contact {
    background-color: var(--rh-primary);
    /* CSS circuit-board pattern: grid lines + midpoint nodes */
    background-image:
        linear-gradient(rgba(30, 144, 255, 0.07) 1px, transparent 1px),
        linear-gradient(90deg, rgba(30, 144, 255, 0.07) 1px, transparent 1px),
        radial-gradient(circle, rgba(30, 144, 255, 0.14) 1.5px, transparent 1.5px);
    background-size: 48px 48px, 48px 48px, 48px 48px;
    background-position: 0 0, 0 0, 24px 24px;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}
/* Radial centre glow so text reads clearly */
.rh-cta-contact::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(
        ellipse 70% 80% at 50% 50%,
        rgba(10, 30, 110, 0.55) 0%,
        transparent 100%
    );
    pointer-events: none;
}
.rh-cta-contact-inner {
    position: relative;
    z-index: 2;
}

/* Badge */
.rh-cta-contact-badge {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 6px 18px;
    background: rgba(30, 144, 255, 0.18);
    border: 1px solid rgba(30, 144, 255, 0.40);
    border-radius: 50px;
    color: var(--rh-accent);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-bottom: 22px;
}

/* Headline */
.rh-cta-contact-title {
    font-size: 48px;
    font-weight: 900;
    font-family: var(--rh-font-heading);
    color: #ffffff;
    line-height: 1.15;
    margin-bottom: 18px;
}

/* Subtext */
.rh-cta-contact-sub {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.72);
    margin-bottom: 40px;
    line-height: 1.6;
}

/* Button row */
.rh-cta-contact-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}
.rh-cta-primary-btn.default-btn {
    padding: 16px 40px !important;
    font-size: 15px !important;
    box-shadow: 0 8px 32px rgba(10, 30, 110, 0.4);
}
.rh-cta-primary-btn.default-btn:hover {
    background-color: var(--rh-accent) !important;
    box-shadow: 0 12px 40px rgba(30, 144, 255, 0.4);
    transform: translateY(-2px);
}
/* Phone call button — silver-outlined */
.rh-cta-call-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 36px;
    border-radius: 50px;
    border: 2px solid rgba(192, 192, 192, 0.55);
    color: rgba(232, 232, 232, 0.92) !important;
    font-weight: 700;
    font-family: var(--rh-font-heading);
    font-size: 15px;
    text-decoration: none;
    transition: all 0.35s;
    background: transparent;
}
.rh-cta-call-btn:hover {
    background: rgba(255, 255, 255, 0.10);
    border-color: var(--rh-silver);
    color: #ffffff !important;
    transform: translateY(-2px);
}

/* ── Footer ──────────────────────────────────── */
.rh-site-footer {
    background-color: #060E2B;
    font-size: 14px;
}

/* ── Footer top band ─ */
.rh-footer-top {
    padding: 68px 0 48px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

/* Brand column */
.rh-footer-logo-link {
    display: inline-block;
    margin-bottom: 20px;
}
.rh-footer-logo {
    height: 48px;
    width: auto;
}
.rh-footer-blurb {
    color: rgba(255, 255, 255, 0.58);
    line-height: 1.75;
    margin-bottom: 0;
    max-width: 280px;
}
.rh-footer-social {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 22px;
}
.rh-footer-social a {
    width: 38px;
    height: 38px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.10);
    border-radius: 9px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.65);
    font-size: 16px;
    text-decoration: none;
    transition: background 0.3s, color 0.3s, border-color 0.3s;
}
.rh-footer-social a:hover {
    background: var(--rh-accent);
    border-color: var(--rh-accent);
    color: #ffffff;
}

/* Footer column shared styles */
.rh-footer-col {
    padding-left: 8px;
}
.rh-footer-heading {
    font-size: 15px;
    font-weight: 700;
    font-family: var(--rh-font-heading);
    color: #ffffff;
    margin-bottom: 20px;
    padding-bottom: 12px;
    position: relative;
}
.rh-footer-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 32px;
    height: 2px;
    background: var(--rh-accent);
}

/* Nav links */
.rh-footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}
.rh-footer-links li {
    margin-bottom: 11px;
}
.rh-footer-links li:last-child {
    margin-bottom: 0;
}
.rh-footer-links a {
    color: rgba(255, 255, 255, 0.55);
    text-decoration: none;
    transition: color 0.3s, padding-left 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}
.rh-footer-links a::before {
    content: '›';
    color: var(--rh-accent);
    font-size: 15px;
    line-height: 1;
    flex-shrink: 0;
}
.rh-footer-links a:hover {
    color: var(--rh-accent);
    padding-left: 4px;
}

/* Contact info list */
.rh-footer-contact-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.rh-footer-contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 11px;
    margin-bottom: 14px;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.55;
}
.rh-footer-contact-list li:last-child {
    margin-bottom: 0;
}
.rh-footer-contact-list i {
    font-size: 16px;
    color: var(--rh-accent);
    flex-shrink: 0;
    margin-top: 1px;
}
.rh-footer-contact-list a {
    color: rgba(255, 255, 255, 0.55);
    text-decoration: none;
    transition: color 0.3s;
}
.rh-footer-contact-list a:hover {
    color: var(--rh-accent);
}

/* ── Footer bottom bar ─ */
.rh-footer-bottom {
    padding: 16px 0;
}
.rh-footer-copy {
    color: rgba(255, 255, 255, 0.38);
    font-size: 13px;
    margin-bottom: 0;
}
.rh-footer-copy span {
    color: var(--rh-accent);
    font-weight: 600;
}
.rh-footer-legal {
    color: rgba(255, 255, 255, 0.38);
    font-size: 13px;
    margin-bottom: 0;
}
.rh-footer-legal a {
    color: rgba(255, 255, 255, 0.38);
    text-decoration: none;
    margin-left: 20px;
    transition: color 0.3s;
}
.rh-footer-legal a:first-child {
    margin-left: 0;
}
.rh-footer-legal a:hover {
    color: var(--rh-accent);
}

/* ── Back to Top ─────────────────────────────── */
.rh-back-to-top {
    position: fixed;
    bottom: 28px;
    right: 28px;
    width: 46px;
    height: 46px;
    background: var(--rh-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    transition: opacity 0.4s, background 0.3s, transform 0.3s;
    z-index: 999;
    box-shadow: 0 6px 20px rgba(10, 30, 110, 0.35);
}
.rh-back-to-top:hover {
    background: var(--rh-accent);
    transform: translateY(-3px);
}
.rh-back-to-top i {
    color: #ffffff;
    font-size: 20px;
}

/* ── Responsive ──────────────────────────────── */
@media (max-width: 1399px) {
    .rh-hero-title {
        font-size: 58px;
    }
}

@media (max-width: 1199px) {
    .rh-hero-title {
        font-size: 50px;
    }
    .rh-hero-container {
        padding-bottom: 120px;
    }
}


@media (max-width: 991px) {
    .rh-hero-fullscreen {
        min-height: 100svh;
    }
    .rh-hero-title {
        font-size: 42px;
    }
    .rh-hero-desc {
        font-size: 17px;
    }
    .rh-hero-container {
        padding-bottom: 100px;
    }
    /* Stats bar — 2 columns on tablet */
    .rh-hero-stat {
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
        padding: 18px 24px;
    }
    .rh-hero-stat--last,
    .col-md-6:nth-child(odd) .rh-hero-stat {
        border-right: none;
    }
    .rh-stats-section .col-lg-3 {
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
    .rh-stat-item {
        border-right: none;
    }
    .rh-stat-item--last {
        border-bottom: none;
    }
    .rh-cta-title {
        font-size: 28px;
    }
    .rh-section-title-alt {
        font-size: 30px;
    }
    .rh-contact-title {
        font-size: 28px;
    }
    .rh-contact-form-wrap {
        padding: 28px;
        margin-top: 32px;
    }
    /* stat boxes stack 2-wide on tablet — keep grid intact */
    .rh-about-stat-num {
        font-size: 36px;
    }
}

@media (max-width: 767px) {
    .rh-hero-fullscreen {
        min-height: 100svh;
    }
    .rh-hero-title {
        font-size: 34px;
    }
    .rh-hero-desc {
        font-size: 16px;
    }
    .rh-hero-eyebrow {
        font-size: 12px;
        padding: 6px 14px;
    }
    .rh-hero-actions {
        flex-direction: column;
        align-items: center;
    }
    .rh-hero-btn-primary.default-btn,
    .rh-btn-silver {
        width: 100%;
        max-width: 320px;
        justify-content: center;
    }
    .rh-hero-container {
        padding-top: 40px;
        padding-bottom: 90px;
    }
    .rh-hero-stat {
        padding: 14px 18px;
        gap: 10px;
    }
    .rh-hero-stat-icon {
        width: 36px;
        height: 36px;
        min-width: 36px;
    }
    .rh-hero-stat-icon i {
        font-size: 16px;
    }
    .rh-hero-stat-text strong {
        font-size: 13px;
    }
    .rh-hero-stat-text span {
        font-size: 11px;
    }
    .rh-section {
        padding: 60px 0 50px;
    }
    .rh-stat-number .counter {
        font-size: 44px;
    }
    .rh-cta-band {
        padding: 55px 0;
    }
    .rh-cta-title {
        font-size: 24px;
    }
    .rh-contact-form-wrap {
        padding: 20px;
    }
}

@media (max-width: 575px) {
    .rh-hero-title {
        font-size: 28px;
    }
    .rh-hero-desc {
        font-size: 15px;
    }
    .rh-stat-number .counter {
        font-size: 36px;
    }
    .rh-testimonial-card {
        padding: 24px;
    }
    .rh-about-actions {
        flex-direction: column;
        align-items: flex-start;
    }
    /* Stats bar — stack to 2 per row on small phones */
    .rh-hero-stat {
        padding: 12px 14px;
        gap: 8px;
    }
    .rh-hero-stat-text strong {
        font-size: 12px;
    }
    /* Achievement banner — tighten on phones */
    .rh-achieve-num .counter {
        font-size: 36px;
    }
    .rh-achieve-prefix,
    .rh-achieve-suffix {
        font-size: 20px;
    }
    .rh-achieve-item {
        padding: 28px 12px 24px;
    }
    .rh-achieve-item p {
        font-size: 11px;
    }
}

/* ── Reach / Action Cards (contact page) ─────── */
.rh-reach-card {
    display: flex;
    align-items: center;
    gap: 22px;
    border-radius: 18px;
    padding: 30px 28px;
    margin-bottom: 20px;
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}
.rh-reach-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 56px rgba(10,30,110,0.18);
}
.rh-reach-card--email {
    background: linear-gradient(135deg, #0A1E6E 0%, #0D2A8A 100%);
    border: 1px solid rgba(30,144,255,0.20);
}
.rh-reach-card--whatsapp {
    background: linear-gradient(135deg, #075E54 0%, #128C7E 100%);
    border: 1px solid rgba(37,211,102,0.20);
}
.rh-reach-card::before {
    content: '';
    position: absolute;
    top: -40px; right: -40px;
    width: 130px; height: 130px;
    border-radius: 50%;
    background: rgba(255,255,255,0.05);
    pointer-events: none;
}
.rh-reach-icon {
    width: 64px; height: 64px; min-width: 64px;
    background: rgba(255,255,255,0.12);
    border-radius: 16px;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
    transition: background 0.3s;
}
.rh-reach-card:hover .rh-reach-icon { background: rgba(255,255,255,0.22); }
.rh-reach-icon i { font-size: 30px; color: #fff; }
.rh-reach-icon svg { color: #fff; }
.rh-reach-body { flex: 1; }
.rh-reach-body h4 {
    font-size: 20px;
    font-weight: 800;
    font-family: var(--rh-font-heading);
    color: #ffffff;
    margin-bottom: 6px;
    line-height: 1.2;
}
.rh-reach-body p {
    font-size: 14px;
    color: rgba(255,255,255,0.70);
    line-height: 1.65;
    margin-bottom: 10px;
}
.rh-reach-address {
    display: inline-block;
    font-size: 14px;
    font-weight: 700;
    font-family: var(--rh-font-heading);
    color: rgba(255,255,255,0.90);
    background: rgba(255,255,255,0.10);
    border: 1px solid rgba(255,255,255,0.18);
    border-radius: 50px;
    padding: 4px 14px;
}
.rh-reach-arrow {
    width: 40px; height: 40px; min-width: 40px;
    background: rgba(255,255,255,0.10);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
    transition: background 0.3s, transform 0.3s;
}
.rh-reach-card:hover .rh-reach-arrow {
    background: rgba(255,255,255,0.22);
    transform: translateX(4px);
}
.rh-reach-arrow i { font-size: 18px; color: #fff; }
.rh-reach-note {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    background: #F4F7FF;
    border: 1px solid #E0E6F0;
    border-radius: 12px;
    padding: 16px 18px;
    font-size: 14px;
    color: var(--rh-body-text);
    line-height: 1.6;
}
.rh-reach-note i { font-size: 18px; color: var(--rh-accent); flex-shrink: 0; margin-top: 1px; }
.rh-reach-note a { color: var(--rh-primary); font-weight: 700; text-decoration: none; }
.rh-reach-note a:hover { color: var(--rh-accent); }

@media (max-width: 575px) {
    .rh-reach-card { flex-wrap: wrap; padding: 22px 18px; gap: 16px; }
    .rh-reach-arrow { display: none; }
}

/* ── Inner Page Hero ───────────────────────── */
.rh-inner-hero {
  background: linear-gradient(135deg, #04102E 0%, #0A1E6E 60%, #0D2A8A 100%);
  padding: 140px 0 64px;
  position: relative;
  overflow: hidden;
}
.rh-inner-hero::before {
  content:'';position:absolute;inset:0;
  background-image: radial-gradient(rgba(30,144,255,0.08) 1px, transparent 1px);
  background-size: 32px 32px;
  pointer-events: none;
}
.rh-inner-hero-overlay {
  position:absolute;inset:0;
  background:radial-gradient(ellipse at 20% 50%, rgba(30,144,255,0.12) 0%, transparent 55%);
  pointer-events:none;
}
.rh-inner-hero-content { position:relative;z-index:2; }
.rh-inner-hero-title {
  font-size:52px;font-weight:900;
  font-family:'Josefin Sans',sans-serif;
  color:#fff;margin-bottom:20px;line-height:1.1;
}
.rh-breadcrumb {
  display:flex;align-items:center;gap:8px;
  list-style:none;padding:0;margin:0;font-size:14px;
}
.rh-breadcrumb li { color:rgba(255,255,255,0.50); }
.rh-breadcrumb li:not(:last-child)::after { content:'/';margin-left:8px;color:rgba(255,255,255,0.25); }
.rh-breadcrumb a { color:var(--rh-accent);text-decoration:none;transition:color 0.2s; }
.rh-breadcrumb a:hover { color:#fff; }

/* ── Contact Form ──────────────────────────── */
.rh-contact-section { padding: 90px 0; background: #fff; }
.rh-contact-form .rh-form-input {
  width:100%;padding:14px 18px;
  border:1.5px solid #E0E6F0;border-radius:10px;
  font-size:14px;font-family:inherit;
  background:#fff;color:#1a1a2e;
  transition:border-color 0.2s;outline:none;
  display:block;
}
.rh-contact-form .rh-form-input:focus { border-color:#1E90FF; box-shadow: 0 0 0 3px rgba(30,144,255,0.10); }
.rh-contact-form textarea.rh-form-input { resize:vertical;min-height:140px; }
.rh-contact-form select.rh-form-input { cursor:pointer; }

/* Contact info card on contact page */
.rh-contact-info-card-lg {
  display:flex;align-items:flex-start;gap:16px;
  background:#F4F7FF;border-radius:14px;padding:20px;
  margin-bottom:16px;border:1px solid #E0E6F0;
  transition:border-color 0.3s,transform 0.3s;
  text-decoration:none;
}
.rh-contact-info-card-lg:hover { border-color:#1E90FF;transform:translateX(4px); }
.rh-contact-info-card-lg .rh-cic-icon {
  width:46px;height:46px;min-width:46px;
  background:linear-gradient(135deg,#0A1E6E,#1E90FF);
  border-radius:10px;display:flex;align-items:center;justify-content:center;
}
.rh-contact-info-card-lg .rh-cic-icon i { font-size:20px;color:#fff; }
.rh-contact-info-card-lg .rh-cic-label { display:block;font-size:11px;font-weight:700;color:#687693;text-transform:uppercase;letter-spacing:1px;margin-bottom:4px; }
.rh-contact-info-card-lg .rh-cic-value { display:block;font-size:15px;font-weight:700;font-family:'Josefin Sans',sans-serif;color:#0A1E6E;line-height:1.35; }
.rh-map-placeholder { background:linear-gradient(135deg,#0A1E6E,#071550);border-radius:14px;padding:40px 24px;text-align:center;margin-top:8px; }
.rh-map-placeholder i { font-size:40px;color:#1E90FF;margin-bottom:12px;display:block; }
.rh-map-placeholder p { color:rgba(255,255,255,0.70);font-size:14px;margin:0; }
.rh-map-placeholder a { color:#1E90FF;text-decoration:none;font-weight:600; }

@media(max-width:767px) {
  .rh-inner-hero { padding:110px 0 48px; }
  .rh-inner-hero-title { font-size:32px; }
}

/* ── Services page detail cards ─────────────── */
.rh-svc-detail-card {
  background:#fff;border-radius:16px;border:1px solid #E8EEFF;
  padding:36px 32px;margin-bottom:28px;
  box-shadow:0 4px 20px rgba(10,30,110,0.06);
  transition:box-shadow 0.3s,transform 0.3s;
}
.rh-svc-detail-card:hover { box-shadow:0 12px 40px rgba(10,30,110,0.12);transform:translateY(-4px); }
.rh-svc-detail-icon {
  width:60px;height:60px;background:linear-gradient(135deg,#0A1E6E,#1E90FF);
  border-radius:14px;display:flex;align-items:center;justify-content:center;
  margin-bottom:20px;
}
.rh-svc-detail-icon i { font-size:28px;color:#fff; }
.rh-svc-detail-card h3 { font-size:22px;font-weight:800;font-family:'Josefin Sans',sans-serif;color:#0A1E6E;margin-bottom:12px; }
.rh-svc-detail-card p { font-size:15px;color:#687693;line-height:1.75;margin-bottom:16px; }
.rh-svc-detail-card ul { list-style:none;padding:0;margin:0;display:flex;flex-direction:column;gap:8px; }
.rh-svc-detail-card ul li { display:flex;align-items:flex-start;gap:10px;font-size:14px;color:#1a1a2e;line-height:1.5; }
.rh-svc-detail-card ul li::before { content:'\eb7c';font-family:'remixicon';color:#1E90FF;font-size:16px;flex-shrink:0;margin-top:1px; }

/* ── Projects page cards ─────────────────────── */
.rh-project-detail-card {
  background:#fff;border-radius:16px;border:1px solid #E8EEFF;
  border-top:4px solid #0A1E6E;padding:28px 26px;height:100%;
  box-shadow:0 4px 16px rgba(10,30,110,0.07);
  transition:box-shadow 0.3s,transform 0.3s;
  display:flex;flex-direction:column;gap:0;
}
.rh-project-detail-card:hover { box-shadow:0 14px 40px rgba(10,30,110,0.14);transform:translateY(-6px); }
.rh-project-detail-card .rh-pd-icon {
  width:50px;height:50px;background:linear-gradient(135deg,#0A1E6E,#1E90FF);
  border-radius:12px;display:flex;align-items:center;justify-content:center;margin-bottom:18px;
}
.rh-project-detail-card .rh-pd-icon i { font-size:22px;color:#fff; }
.rh-project-detail-card h4 { font-size:18px;font-weight:800;font-family:'Josefin Sans',sans-serif;color:#0A1E6E;margin-bottom:8px; }
.rh-pd-client { font-size:13px;font-weight:700;color:#1E90FF;margin-bottom:12px; }
.rh-pd-scope { font-size:14px;color:#687693;line-height:1.7;flex:1;margin-bottom:18px; }
.rh-pd-meta { display:flex;align-items:center;gap:14px;flex-wrap:wrap;padding-top:14px;border-top:1px solid #E8EEFF; }
.rh-pd-meta span { display:inline-flex;align-items:center;gap:5px;font-size:12px;font-weight:600;color:#687693; }
.rh-pd-meta i { font-size:13px;color:#1E90FF; }
