/* =============================================================================
   custom.css — KP Site Overrides
   File: /public_html/assets/css/custom.css
   Updated: Pre-launch full fix pass (all 13 issues)

   Fixes applied here:
   #1  Hero: animation fallback — content always visible even if GSAP/WOW fails
   #2  Hero: white bg with bottom border, dark text colours
   #3  Stats section: heading added + text visibility
   #4  Client logos: spacing + name label option
   #5  Service icons: ensure icon font visible
   #6  Testimonial: LinkedIn badge spacing
   #7  .stat-num styling
   #8  FAQ tabs: active count badge contrast
   #9  Font-display (also in head.php <style>)
   #10 CLS: header-right min-width
   #11 Header nav overflow — prevent wrapping to two rows
   #12 Blog sidebar CTA widget improvements
   #16 ARIA ratings div (removed aria-label, use role=img instead)
   #17 LinkedIn badge contrast fix
   #18 Accessibility skip link
   #19 Heading order helper
============================================================================= */

/* ── Breadcrumb hero headings — always white, override WOW/theme color #003566 ── */
/* Covers all selectors: .page-heading wrapper AND direct breadcrumb section children */
.page-heading h1,
.page-heading h2,
.breadcrumb-section h1,
.breadcrumb-section h2,
h1.wow,
h2.wow,
h1.fadeInUp,
h2.fadeInUp {
    color: #ffffff !important;
    visibility: visible !important;
    opacity: 1 !important;
}
/* Full breadcrumb heading styles */
.page-heading h1,
.page-heading h2 {
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 700;
    text-transform: capitalize;
    line-height: 1.2;
    margin: 0 0 12px;
}
@media(max-width:575px){
    .page-heading h1,
    .page-heading h2 { font-size: 28px; }
}

/* ── Accessibility: Skip link — hidden on all devices (removed per user request) */
.skip-to-main{display:none!important;}

/* ═══════════════════════════════════════════════════════════════════════════
   ISSUE #2 — HERO SECTION: White background, clean border bottom
   Foreground: dark #1a1f2e for heading, #4b5563 for body text
═══════════════════════════════════════════════════════════════════════════ */
.kp-hero-gradient {
    /* Replace dark gradient with clean white */
    background: #ffffff !important;
    background-image: none !important;
    border-bottom: 3px solid #e5e7eb;
    position: relative;
    overflow: hidden;
}

/* Subtle decorative accent — top-left geometric shape */
.kp-hero-gradient::before {
    content: '';
    position: absolute;
    top: -60px; left: -80px;
    width: 420px; height: 420px;
    background: radial-gradient(circle, rgba(15,111,216,.07) 0%, transparent 70%);
    pointer-events: none;
}
.kp-hero-gradient::after {
    content: '';
    position: absolute;
    bottom: -60px; right: -60px;
    width: 320px; height: 320px;
    background: radial-gradient(circle, rgba(99,84,210,.06) 0%, transparent 70%);
    pointer-events: none;
}

/* Hero text colours — dark on white */
.kp-hero-gradient .hero-content span {
    color: var(--theme-color, #6C57D2) !important;
    opacity: 1 !important;
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}
.kp-hero-gradient .hero-content h1 {
    color: #1a1f2e !important;
    font-size: clamp(32px, 4vw, 52px);
    line-height: 1.15;
}
.kp-hero-gradient .hero-content p {
    color: #4b5563 !important;
    font-size: 17px;
    line-height: 1.8;
}

/* Hero trust signals */
.hero-trust {
    margin-top: 22px;
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
    align-items: center;
}
.hero-trust span {
    font-size: 13px;
    color: #374151;
    display: flex;
    align-items: center;
    gap: 6px;
    font-weight: 500;
}
.hero-trust .fa-check-circle { color: #059669; font-size: 15px; }

/* ═══════════════════════════════════════════════════════════════════════════
   ISSUE #3 — STATS / COUNTER SECTION: Add visible heading + fix text colour
   The template had no section heading text — added via CSS pseudo-element
   AND we add real heading in home.php. Here we ensure text is visible.
═══════════════════════════════════════════════════════════════════════════ */
.counter-section {
    background: linear-gradient(135deg, #0f6fd8 0%, #0a3d6b 100%);
    position: relative;
}
.counter-section-heading {
    text-align: center;
    margin-bottom: 40px;
    color: #fff;
}
.counter-section-heading h2 {
    color: #fff !important;
    font-size: clamp(24px, 3vw, 36px);
    margin: 0 0 10px;
}
.counter-section-heading p {
    color: rgba(255,255,255,.8) !important;
    font-size: 16px;
    margin: 0;
}

/* Fix counter items — ensure text is visible on dark bg */
.counter-section .counter-items p,
.counter-section .counter-wrapper p {
    color: rgba(255,255,255,.85) !important;
    font-size: 14px;
    margin: 6px 0 0;
}
.counter-section .counter-items .icon i {
    color: rgba(255,255,255,.9) !important;
}

/* ── Fix #7: Stat numbers ──────────────────────────────────────────────────── */
.stat-num {
    font-size: 48px;
    font-weight: 800;
    color: var(--tg-heading-color, #1a1f2e);
    line-height: 1;
    margin-bottom: 8px;
}
.counter-section .stat-num,
.counter-section .odometer { 
    color: #ffffff !important;
}

/* ═══════════════════════════════════════════════════════════════════════════
   ISSUE #4 — CLIENT LOGOS MARQUEE: Spacing + name labels
   Logos are 150x150 but content centered — need display padding
═══════════════════════════════════════════════════════════════════════════ */
.client-logos-section {
    padding: 32px 0 36px;
    background: #f8f9fa;
    border-top: 1px solid #e5e7eb;
    border-bottom: 1px solid #e5e7eb;
    overflow: hidden;
}
.client-logos-label {
    text-align: center;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #9ca3af;
    margin-bottom: 24px;
}

/* Marquee wrapper */
.marquee {
    display: flex;
    user-select: none;
    gap: 40px;
    overflow: hidden;
    mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
}
.marquee-group {
    display: flex;
    align-items: center;
    gap: 40px;
    flex-shrink: 0;
    animation: kp-marquee 32s linear infinite;
}
@media (prefers-reduced-motion: reduce) {
    .marquee-group { animation-play-state: paused; }
}
@keyframes kp-marquee {
    from { transform: translateX(0); }
    to   { transform: translateX(calc(-100% - 40px)); }
}

/* Individual logo cards — extra padding so centered logos have breathing room */
.marquee-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 130px;           /* wider to accommodate label */
    flex-shrink: 0;
    background: #fff;
    border-radius: 12px;
    padding: 14px 16px 10px; /* generous padding for centered logos */
    box-shadow: 0 1px 4px rgba(0,0,0,.06), 0 0 0 1px rgba(0,0,0,.04);
    transition: transform 0.25s, box-shadow 0.25s;
}
.marquee-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(0,0,0,.1), 0 0 0 1px rgba(15,111,216,.15);
}
.marquee-item img {
    width: 90px;
    height: 60px;
    object-fit: contain;
    object-position: center;
    filter: grayscale(25%) opacity(0.85);
    transition: filter 0.25s;
}
.marquee-item:hover img {
    filter: grayscale(0%) opacity(1);
}
/* Optional company name label under logo */
.marquee-item-name {
    font-size: 10px;
    font-weight: 600;
    color: #9ca3af;
    text-align: center;
    letter-spacing: 0.3px;
    line-height: 1.3;
    max-width: 100px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

/* ═══════════════════════════════════════════════════════════════════════════
   ISSUE #5 — Service section: icon display fix
   Icons may be invisible because font-awesome loads async
═══════════════════════════════════════════════════════════════════════════ */
.service-card-items-1 .service-icon i {
    display: inline-block;
    min-width: 1em;
    min-height: 1em;
}

/* ═══════════════════════════════════════════════════════════════════════════
   ISSUE #6 — TESTIMONIALS: LinkedIn badge spacing
   Badge was flush against top of card — needs breathing room
═══════════════════════════════════════════════════════════════════════════ */
.testimonial-linkedin {
    border-top: 3px solid #0077B5 !important;
    padding-top: 8px !important; /* extra space above badge */
}

/* ── ISSUE #17 FIX: LinkedIn badge contrast ──────────────────────────────── */
/* Old: color:#0077B5 on #e8f4fd bg — contrast ~3.8:1 (fails AA for small text) */
/* Fix: darker text #005f8e on slightly lighter bg — contrast ~4.6:1 (passes AA) */
.linkedin-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #ddeefa;           /* slightly lighter blue tint */
    border: 1px solid #7ab8e0;     /* more visible border */
    border-radius: 20px;
    padding: 5px 12px;
    margin-bottom: 14px;           /* ISSUE #6: add space before content */
    font-size: 11px;
    font-weight: 700;              /* bolder = easier to read at small size */
    color: #00527a;                /* darker blue = contrast ratio ~5.2:1 ✅ AA */
}
.linkedin-badge svg { flex-shrink: 0; }

/* Testimonial avatar */
.testimonial-avatar {
    width: 50px; height: 50px;
    border-radius: 50%;
    background: var(--theme-color, #0f6fd8);
    display: flex; align-items: center; justify-content: center;
    color: #fff; font-weight: 700; font-size: 18px; flex-shrink: 0;
}
/* LinkedIn link */
.testimonial-li-link {
    display: inline-flex; align-items: center; gap: 4px;
    font-size: 11px; color: #005f8e;
    text-decoration: none; margin-top: 4px;
    font-weight: 700; transition: opacity .2s;
}
.testimonial-li-link:hover { opacity: .8; text-decoration: underline; }

/* ── ISSUE #16 FIX: ratings div ARIA ────────────────────────────────────── */
/* aria-label is prohibited on <div> with implicit presentation role.       */
/* We use role="img" + aria-label which IS valid. CSS targets .ratings div. */
.ratings[role="img"] { display: flex; gap: 2px; }
.ratings[role="img"] i { font-size: 14px; color: var(--ratting, #F8BC26); }

/* ── ISSUE #10 FIX: CLS — header-right layout shift ─────────────────────── */
/* Reserve space for header-right so it doesn't shift during paint          */
.header-right {
    min-width: 200px;
    will-change: auto;
    min-height: 50px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

/* ══════════════════════════════════════════════════════════════════════════
   TEXT LOGO — header & footer logo text styling
   main.css has no .text-logo styles so default link colour (blue) shows.
   We set it here (also duplicated in critical CSS in head.php).
═══════════════════════════════════════════════════════════════════════════ */
.text-logo {
    color: #ffffff !important;
    text-decoration: none !important;
    font-size: 1.35em;
    font-weight: 800;
    letter-spacing: -0.3px;
    white-space: nowrap;
    line-height: 1.2;
}
.text-logo span { color: #7eb3ff !important; }
/* Footer logo — same as header (already white) */
.footer-section .text-logo { color: #ffffff !important; }
.footer-section .text-logo span { color: #7eb3ff !important; }

/* ══════════════════════════════════════════════════════════════════════════
   THEME-BTN COMPLETE OVERRIDE
   main.css sets display:inline-block, padding:7px 30px, and styles .theme-btn i
   as a 48×48px boxed element (margin-left:30px). This overrides all of that
   back to our simple inline-flex button design.
═══════════════════════════════════════════════════════════════════════════ */
.theme-btn {
    display: inline-flex !important;
    align-items: center !important;
    gap: 8px !important;
    padding: 13px 26px !important;
    padding-right: 26px !important;  /* cancel main.css padding-right:5px */
    border-radius: 6px !important;
    overflow: visible !important;    /* cancel main.css overflow:hidden */
    font-family: inherit !important;
    font-size: 15px !important;
    font-weight: 700 !important;
    line-height: 1.4 !important;
    background-color: #0a5bbf !important;
    color: #ffffff !important;
    border: 2px solid #0a5bbf !important;
    text-decoration: none !important;
    position: relative;
    z-index: 1;
}
.theme-btn:hover {
    background-color: #084fa8 !important;
    color: #ffffff !important;
    border-color: #084fa8 !important;
}

/* Reset the icon inside theme-btn — was a 48px box in main.css */
.theme-btn i {
    width: auto !important;
    height: auto !important;
    line-height: normal !important;
    background-color: transparent !important;
    color: inherit !important;
    margin-left: 0 !important;
    border-radius: 0 !important;
    font-size: 13px !important;
    display: inline-block !important;
}
/* Remove main.css hover fill animation (::before/::after) */
.theme-btn::before,
.theme-btn::after { display: none !important; }

/* ── Fix #21: font-display swap for local fonts (belt and suspenders) ────── */
@font-face { font-family: 'Font Awesome 5 Free';   font-display: swap; }
@font-face { font-family: 'Font Awesome 5 Brands'; font-display: swap; }
@font-face { font-family: 'flaticon';              font-display: swap; }

/* ═══════════════════════════════════════════════════════════════════════════
   ISSUE #19 — Heading order: testimonial client name should NOT be h5
   We use .client-name-text class and style it like h6 visually
   (The PHP uses <p class="client-name-text"> now instead of <h5>)
═══════════════════════════════════════════════════════════════════════════ */
.client-name-text {
    font-size: 16px;
    font-weight: 700;
    color: var(--header, #003566);
    margin: 0 0 2px;
    line-height: 1.4;
}

/* ═══════════════════════════════════════════════════════════════════════════
   ISSUE #1 — HERO ANIMATION FALLBACK
   WOW.js and GSAP set opacity:0 / visibility:hidden before animating.
   If scripts are slow or fail, hero content stays invisible.
   Force hero content to be always visible — let animations ENHANCE not REVEAL.
═══════════════════════════════════════════════════════════════════════════ */
.hero-section .hero-content h1,
.hero-section .hero-content p,
.hero-section .hero-content span,
.hero-section .hero-btn,
.hero-section .hero-btn a,
.hero-section .hero-trust {
    visibility: visible !important;
    opacity: 1 !important;
}
/* Override WOW initial hidden state for above-fold hero elements */
.hero-section .wow {
    visibility: visible !important;
    animation-name: fadeInUp;
    animation-duration: 0.6s;
    animation-fill-mode: both;
}

/* ═══════════════════════════════════════════════════════════════════════════
   ISSUE #1/#11 — HEADER NAV OVERFLOW FIX
   Nav items wrapping to a second row at mid-viewport widths.
   Tighten up spacing so all items fit in one line at 1200px+.
═══════════════════════════════════════════════════════════════════════════ */

/* Logo: prevent line-break — full styles defined above in TEXT LOGO block */
.text-logo {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    white-space: nowrap;
}

@media (min-width: 1200px) {
    .header-main {
        flex-wrap: nowrap;
        align-items: center;
    }
    /* Slightly smaller logo to give nav more room */
    .text-logo { font-size: 1.15em !important; }
    .mean__menu-wrapper {
        flex: 1;
        min-width: 0;
        overflow: visible;
    }
    .main-menu nav > ul {
        display: flex;
        flex-wrap: nowrap;
        white-space: nowrap;
    }
    /* 1200-1399px: tighter spacing — now 6 top-level items (Contact moved to More) */
    .main-menu nav > ul > li > a {
        padding: 28px 9px !important;
        font-size: 13.5px !important;
        white-space: nowrap;
    }
    /* Hide phone "Call:" at smaller desktops */
    .header-right .link-btn {
        display: none !important;
    }
}
@media (min-width: 1400px) {
    .text-logo { font-size: 1.25em !important; }
    .main-menu nav > ul > li > a {
        padding: 28px 13px !important;
        font-size: 14.5px !important;
    }
    /* Keep phone hidden even at 1400px — saves space */
    .header-right .link-btn {
        display: none !important;
    }
}
@media (min-width: 1600px) {
    .text-logo { font-size: 1.35em !important; }
    .main-menu nav > ul > li > a {
        padding: 28px 16px !important;
        font-size: 15px !important;
    }
    /* Show phone only at very wide screens */
    .header-right .link-btn {
        display: inline-block !important;
    }
}
}

/* ── Hero CTA buttons: style-2 override (primary already covered above) ── */
.theme-btn.style-2 {
    background: transparent !important;
    color: #1a1f2e !important;
    border: 2px solid #c1c9d4 !important;
}
.theme-btn.style-2:hover {
    background: #f3f4f6 !important;
    color: #1a1f2e !important;
    border-color: #aab4c0 !important;
}
/* style-2 on dark/blue backgrounds — used in CTA section */
.cta-section .theme-btn.style-2 {
    background: transparent !important;
    color: #fff !important;
    border-color: rgba(255,255,255,0.7) !important;
}
.cta-section .theme-btn.style-2:hover {
    background: rgba(255,255,255,0.15) !important;
    color: #fff !important;
}
@media (max-width: 575px) {
    .hero-btn {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px !important;
    }
    .hero-btn .theme-btn,
    .hero-btn .theme-btn.style-2 {
        width: 100%;
        justify-content: center;
    }
}

/* ═══════════════════════════════════════════════════════════════════════════
   ISSUE #2/#5 — SERVICE ICONS
   Ensure service card icons display correctly.
   main.css loads async — provide fallback sizing.
═══════════════════════════════════════════════════════════════════════════ */
.service-icon-box-items-2 .icon {
    position: relative;
    width: 70px; height: 70px;
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 20px;
}
.service-icon-box-items-2 .icon i {
    font-size: 32px;
    color: #0f6fd8;
    position: relative; z-index: 1;
}
.service-icon-box-items-2 .icon .icon-bg {
    position: absolute; inset: 0;
}
.service-icon-box-items-2 .icon .icon-bg img {
    width: 100%; height: 100%; object-fit: contain;
}
/* Home page service cards */
.service-card-items-1 .service-icon {
    width: 70px; height: 70px;
    display: flex; align-items: center; justify-content: center;
    border-radius: 16px;
    background: #eff6ff;
    margin-bottom: 18px;
    font-size: 30px;
    color: #0f6fd8;
}
.service-card-items-1 .service-icon.color-2 { background: #fdf2ec; color: #ff5722; }
.service-card-items-1 .service-icon.color-3 { background: #edfaf4; color: #059669; }
.service-card-items-1 .service-icon.color-4 { background: #f3f0ff; color: #7c3aed; }

/* ═══════════════════════════════════════════════════════════════════════════
   ISSUE #8 — FAQ TABS: Active count badge contrast fix
   White text on white semi-transparent bg is unreadable.
═══════════════════════════════════════════════════════════════════════════ */
.faq-tab.active .faq-tab-count {
    background: rgba(255,255,255,0.9) !important;
    color: #0f6fd8 !important;
}

/* ═══════════════════════════════════════════════════════════════════════════
   ISSUE #12 — BLOG SIDEBAR CTA WIDGET
   Ensure proper display at all viewport sizes.
═══════════════════════════════════════════════════════════════════════════ */
.sidebar-widget {
    margin-bottom: 30px;
    background: #fff;
    border-radius: 14px;
    border: 1px solid #f0f4f8;
    box-shadow: 0 2px 12px rgba(0,0,0,.06);
    overflow: hidden;
}
.sideber-title { padding: 18px 24px 0; }
.sideber-title h4 { font-size: 16px; font-weight: 700; color: #1a1f2e; margin: 0; }
.bl-about-widget,
.bl-topics,
.bl-cta-widget { padding: 24px; }
.bl-cta-widget {
    background: linear-gradient(135deg, #0c1b3a, #1a3a6b);
    border-radius: 0;
    padding: 28px 24px;
}
.bl-cta-widget i { font-size: 32px; color: #7eb3ff; margin-bottom: 12px; display: block; }
.bl-cta-widget h4 { font-size: 17px; font-weight: 700; color: #fff; margin-bottom: 10px; }
.bl-cta-widget p  { font-size: 14px; color: rgba(255,255,255,.7); margin-bottom: 20px; line-height: 1.6; }
.bl-cta-widget .theme-btn {
    width: 100%;
    justify-content: center;
    background: #fff !important;
    color: #0c1b3a !important;
    border-color: #fff !important;
    font-weight: 700;
}
.bl-cta-widget .theme-btn:hover {
    background: #e8f0fe !important;
    color: #0a5bbf !important;
}

/* ═══════════════════════════════════════════════════════════════════════════
   ABOUT PAGE — Call Us button fix (Issue #3)
   The .phone-box "Call Us" style
═══════════════════════════════════════════════════════════════════════════ */
.ab-call-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #eff6ff;
    color: #0f6fd8;
    border: 2px solid #bfdbfe;
    border-radius: 8px;
    padding: 12px 24px;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    transition: background 0.2s, border-color 0.2s;
    margin-top: 8px;
}
.ab-call-btn:hover {
    background: #dbeafe;
    border-color: #93c5fd;
    color: #0a5bbf;
}
.ab-call-btn i { font-size: 18px; }

/* ═══════════════════════════════════════════════════════════════════════════
   CASE STUDIES — Stats strip heading
═══════════════════════════════════════════════════════════════════════════ */
.cs-stats-strip .cs-stats-heading {
    text-align: center;
    margin-bottom: 24px;
    color: #fff;
}
.cs-stats-strip .cs-stats-heading h2 {
    font-size: clamp(20px, 2.5vw, 28px);
    font-weight: 700;
    color: #fff;
    margin: 0;
}

/* ═══════════════════════════════════════════════════════════════════════════
   SERVICES PAGE — Process strip heading
═══════════════════════════════════════════════════════════════════════════ */
.sv-process-strip .sv-process-heading {
    text-align: center;
    margin-bottom: 28px;
}
.sv-process-strip .sv-process-heading h2 {
    font-size: clamp(20px, 2.5vw, 26px);
    font-weight: 700;
    color: #1a1f2e;
    margin: 0 0 6px;
}
.sv-process-strip .sv-process-heading p {
    font-size: 14px;
    color: #6b7280;
    margin: 0;
}

/* ═══════════════════════════════════════════════════════════════════════════
   ABOUT PAGE — Stats strip heading
═══════════════════════════════════════════════════════════════════════════ */
.ab-stats-section .ab-stats-heading {
    text-align: center;
    margin-bottom: 24px;
    color: #fff;
}
.ab-stats-section .ab-stats-heading h2 {
    font-size: clamp(20px, 2.5vw, 28px);
    font-weight: 700;
    color: #fff;
    margin: 0;
}

/* ═══════════════════════════════════════════════════════════════════════════
   ABOUT PAGE — Market flag cards (fix emoji encoding)
   Replace emoji with CSS flag indicators
═══════════════════════════════════════════════════════════════════════════ */
.ab-market-flag-text {
    font-size: 14px;
    font-weight: 700;
    color: #0f6fd8;
    background: #eff6ff;
    border: 1px solid #bfdbfe;
    border-radius: 6px;
    padding: 4px 10px;
    display: inline-block;
    margin-bottom: 14px;
    letter-spacing: 0.5px;
}

/* ═══════════════════════════════════════════════════════════════════════════
   CASE STUDIES — Discuss Your Project CTA button
   (display/padding now globally set by THEME-BTN COMPLETE OVERRIDE above)
═══════════════════════════════════════════════════════════════════════════ */
.cs-coming-inner .theme-btn {
    margin-top: 8px;
}

/* ═══════════════════════════════════════════════════════════════════════════
   PERFORMANCE — font-display:swap for Font Awesome (belt-and-suspenders)
   font-awesome.css may use font-display:block. We override here since
   custom.css loads AFTER font-awesome.css (document order wins for
   same-specificity @font-face with !important-like font-display).
   NOTE: These MUST match font-family/weight/style used in font-awesome.css
═══════════════════════════════════════════════════════════════════════════ */
@font-face{font-family:"Font Awesome 5 Brands";font-style:normal;font-weight:400;font-display:swap;src:url("../fonts/fa-brands-400.woff2") format("woff2"),url("../fonts/fa-brands-400.woff") format("woff")}
@font-face{font-family:"Font Awesome 5 Pro";font-style:normal;font-weight:300;font-display:swap;src:url("../fonts/fa-light-300.woff2") format("woff2"),url("../fonts/fa-light-300.woff") format("woff")}
@font-face{font-family:"Font Awesome 5 Pro";font-style:normal;font-weight:400;font-display:swap;src:url("../fonts/fa-regular-400.woff2") format("woff2"),url("../fonts/fa-regular-400.woff") format("woff")}
@font-face{font-family:"Font Awesome 5 Pro";font-style:normal;font-weight:900;font-display:swap;src:url("../fonts/fa-solid-900.woff2") format("woff2"),url("../fonts/fa-solid-900.woff") format("woff")}
@font-face{font-family:"Font Awesome 5 Free";font-style:normal;font-weight:400;font-display:swap;src:url("../fonts/fa-regular-400.woff2") format("woff2"),url("../fonts/fa-regular-400.woff") format("woff")}
@font-face{font-family:"Font Awesome 5 Free";font-style:normal;font-weight:900;font-display:swap;src:url("../fonts/fa-solid-900.woff2") format("woff2"),url("../fonts/fa-solid-900.woff") format("woff")}
@font-face{font-family:"flaticon";font-style:normal;font-weight:400;font-display:swap;src:url("../fonts/flaticon.woff2?bc92a2b7cf5bb0790eaf3d2de8786ef9") format("woff2"),url("../fonts/flaticon.woff") format("woff")}

/* ═══════════════════════════════════════════════════════════════════════════
   HEADER — "Get Started" button in nav keeps our blue style (not white/purple)
   main.css sets .header-1 .header-right .theme-btn to white bg + purple text.
   Our global .theme-btn !important overrides this, but add specificity safety.
═══════════════════════════════════════════════════════════════════════════ */
.header-1 .header-right .theme-btn {
    background-color: #0a5bbf !important;
    color: #ffffff !important;
    border: 2px solid #0a5bbf !important;
    padding: 11px 22px !important;
    font-size: 14px !important;
}
.header-1 .header-right .theme-btn i {
    background-color: transparent !important;
    color: #ffffff !important;
    width: auto !important;
    height: auto !important;
    margin-left: 0 !important;
}

/* ═══════════════════════════════════════════════════════════════════════════
   CTA SECTION — ensure left-column text is always white and visible
   Prevents invisible text if animation or colour override affects the section
═══════════════════════════════════════════════════════════════════════════ */
.cta-section .col-lg-8 h2,
.cta-section .col-lg-8 p {
    color: #ffffff !important;
    visibility: visible !important;
    opacity: 1 !important;
}

/* ═══════════════════════════════════════════════════════════════════════════
   MOBILE — general improvements
═══════════════════════════════════════════════════════════════════════════ */
@media (max-width: 767px) {
    /* Prevent hero overflow causing horizontal scroll */
    .hero-section { overflow-x: hidden; }
    /* Service cards full width on small mobile */
    .service-card-items-1 { margin-bottom: 20px; }
    /* Ensure CTA section buttons stack vertically */
    .cta-section .col-lg-4 a.theme-btn {
        display: flex !important;
        width: 100%;
        justify-content: center;
        margin-bottom: 12px;
    }
}
