/* ============================================================
   SHARED STYLES — applied to ALL pages (index, about, contact, services)
   ============================================================ */
@import url('https://fonts.googleapis.com/css2?family=Barlow:wght@400;500;600;700;800;900&family=Barlow+Condensed:wght@700;800;900&display=swap');

:root {
    --navy:  #07111f;
    --navy2: #0c1d33;
    --navy3: #102040;
    --blue:  #1a4fd6;
    --blue2: #3b6ef0;
    --gold:  #f5a623;
    --gold2: #ffc84a;
    --ice:   #e8f0fe;
    --muted: rgba(255,255,255,0.55);
    --border-light: #e2e8f0;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: 'Barlow', sans-serif; overflow-x: hidden; }

/* ── TOP BAR ── */
.top_bar { background: var(--navy); padding: 9px 0; font-size: 13px; border-bottom: 1px solid rgba(255,255,255,0.06); }
.top_bar a { color: rgba(255,255,255,0.65); text-decoration: none; transition: color .2s; margin-right: 22px; display: inline-flex; align-items: center; gap: 6px; }
.top_bar a:hover { color: var(--gold); }
.top_bar i { color: var(--gold); font-size: 14px; }
.top_bar .wa_link { background: #25d366; color: #fff !important; padding: 4px 16px; border-radius: 100px; font-weight: 700; gap: 6px; }
.top_bar .wa_link:hover { background: #1ea855; color: #fff !important; }
.top_bar .wa_link i { color: #fff; }

/* ── NAVBAR ── */
.main_menu, .home_menu { background: #fff !important; box-shadow: 0 2px 20px rgba(0,0,0,.07) !important; position: sticky; top: 0; z-index: 200; }
.navbar { padding: 6px 0 !important; }
.navbar-brand img { height: 140px !important; width: auto !important; }
.navbar-nav .nav-link { font-family: 'Barlow', sans-serif; font-weight: 600; font-size: 22px; color: var(--navy) !important; padding: 16px 28px !important; transition: color .2s; }
.navbar-nav .nav-link:hover { color: var(--blue) !important; }
.btn_nav, .btn_1 {
    background: var(--blue) !important; color: #fff !important;
    padding: 10px 22px !important; border-radius: 5px !important;
    font-weight: 700 !important; font-size: 13px !important;
    transition: background .2s !important; border: none !important;
    display: inline-block; text-decoration: none !important;
}
.btn_nav:hover, .btn_1:hover { background: var(--blue2) !important; color: #fff !important; }

/* ── PAGE HERO (breadcrumb replacement) ── */
.page_hero {
    background: var(--navy);
    padding: 70px 0 60px;
    position: relative;
    overflow: hidden;
}
.page_hero::before {
    content: '';
    position: absolute; top: -100px; right: -100px;
    width: 400px; height: 400px; border-radius: 50%;
    border: 60px solid rgba(26,79,214,0.10);
    pointer-events: none;
}
.page_hero .eyebrow {
    font-size: 11px; font-weight: 700; letter-spacing: 3px; text-transform: uppercase;
    color: var(--gold); display: block; margin-bottom: 12px;
}
.page_hero h1 {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: clamp(36px,5vw,60px); font-weight: 900;
    text-transform: uppercase; color: #fff; line-height: 1.05; margin-bottom: 12px;
}
.page_hero p { color: var(--muted); font-size: 16px; max-width: 520px; line-height: 1.6; }
.page_breadcrumb { font-size: 13px; color: rgba(255,255,255,0.4); margin-top: 20px; }
.page_breadcrumb a { color: rgba(255,255,255,0.6); text-decoration: none; }
.page_breadcrumb a:hover { color: var(--gold); }
.page_breadcrumb span { color: var(--gold); margin: 0 8px; }

/* ── SECTION SHARED ── */
.sec { padding: 80px 0; }
.sec.dark { background: var(--navy); }
.sec.grey { background: #f4f7ff; }
.sec_tag {
    display: inline-block; font-size: 11px; font-weight: 700;
    letter-spacing: 3px; text-transform: uppercase;
    color: var(--blue); background: var(--ice);
    padding: 5px 14px; border-radius: 100px; margin-bottom: 14px;
}
.sec.dark .sec_tag { background: rgba(245,166,35,0.15); color: var(--gold); }
.sec_h {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: clamp(30px,4vw,46px); font-weight: 900;
    text-transform: uppercase; color: var(--navy); line-height: 1.05; margin-bottom: 12px;
}
.sec.dark .sec_h { color: #fff; }
.sec_p { color: #5a6a82; font-size: 16px; line-height: 1.7; max-width: 580px; }
.sec.dark .sec_p { color: var(--muted); }
.bar { width: 44px; height: 4px; background: var(--gold); border-radius: 2px; margin: 16px 0 44px; }

/* ── FLOATING WHATSAPP ── */
.wa_float, .whatsapp_float {
    position: fixed; bottom: 26px; right: 26px; z-index: 9999;
    width: 60px; height: 60px; background: #25d366; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 6px 24px rgba(37,211,102,0.45);
    animation: wapulse 2.5s infinite; transition: transform .3s; text-decoration: none;
}
.wa_float:hover, .whatsapp_float:hover { transform: scale(1.1); text-decoration: none; }
.wa_float svg, .whatsapp_float svg { width: 30px; height: 30px; fill: #fff; }
@keyframes wapulse {
    0%,100%{box-shadow:0 6px 24px rgba(37,211,102,0.45)}
    50%{box-shadow:0 6px 32px rgba(37,211,102,0.75),0 0 0 10px rgba(37,211,102,0.12)}
}
.whatsapp_tooltip { display: none; }

/* ── CTA STRIP (shared) ── */
.cta_strip { background: linear-gradient(135deg, var(--blue) 0%, #0f3aaa 100%); padding: 64px 0; text-align: center; }
.cta_strip h2 { font-family: 'Barlow Condensed', sans-serif; font-size: 42px; font-weight: 900; text-transform: uppercase; color: #fff; margin-bottom: 12px; }
.cta_strip p { color: rgba(255,255,255,0.75); font-size: 17px; margin-bottom: 36px; }
.btn_gold {
    display: inline-flex; align-items: center; gap: 9px;
    background: var(--gold); color: var(--navy);
    font-weight: 800; font-size: 14px; padding: 14px 30px; border-radius: 5px;
    transition: all .25s; text-decoration: none;
}
.btn_gold:hover { background: var(--gold2); transform: translateY(-2px); color: var(--navy); text-decoration: none; }
.btn_ghost {
    display: inline-flex; align-items: center; gap: 9px;
    background: transparent; color: #fff; border: 1.5px solid rgba(255,255,255,0.35);
    font-weight: 700; font-size: 14px; padding: 14px 30px; border-radius: 5px;
    transition: all .25s; text-decoration: none;
}
.btn_ghost:hover { border-color: #fff; background: rgba(255,255,255,0.08); color: #fff; text-decoration: none; }

/* ── FOOTER (shared) ── */
.footer-area { background: var(--navy) !important; }
.footer-area .single-footer-widget.footer_2 h4 { color: var(--gold) !important; font-family: 'Barlow Condensed', sans-serif; font-size: 16px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 16px; }
.footer-area .single-footer-widget.footer_2 p,
.footer-area .single-footer-widget.footer_2 ul li a { color: rgba(255,255,255,0.6) !important; font-size: 13.5px; line-height: 1.7; text-decoration: none; }
.footer-area .single-footer-widget.footer_2 ul li a:hover { color: var(--gold) !important; }
.footer-area .contact_info span { color: var(--gold) !important; }
.copyright_part_text { border-top: 1px solid rgba(255,255,255,0.08); padding: 20px 0; }
.footer-text { color: rgba(255,255,255,0.4) !important; font-size: 13px; }
