@charset "UTF-8";
/* ===== CSS CUSTOM PROPERTIES ===== */
:root {
    /* Colors (updated: background set to white) */
    --bg: #FFFFFF; /* page background */
    --primary: #002E63; /* main blue */
    --secondary: #0047BA;
    --accent: #78B3E0; /* light blue */
    --danger: #E31E24; /* red */
    --white: #FFFFFF;
    --text-dark: #2B2A29; /* dark text for readability */
    --text-light: #5A6C7D;
    --border: #ebede1;

    /* Fonts */
    --font-heading: 'Convergence', sans-serif;
    --font-body: Arial, sans-serif;
    --font-primary: var(--font-body);

    /* Spacing */
    --space-xs: 8px;
    --space-md: 16px;
    --space-lg: 24px;
    --space-xl: 32px;
    --space-2xl: 48px;
}

/* ===== BASE STYLES ===== */
* , *::before, *::after {
    box-sizing: border-box;
}

html {
    height: 100%;
    width: 100%;
}

body {
    height: 100%;
    width: 100%;
    font-family: var(--font-body);
    font-style: normal;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    background-color: var(--bg);
    color: var(--text-dark);
    margin: 0;
    padding: 0;
}

a:hover {
    color: var(--primary);
    text-decoration: none !important;
}

a,
button,
input,
select,
textarea {
    -webkit-tap-highlight-color: transparent;
}

/* ===== TYPOGRAPHY ===== */
p {
    font-size: 16px;
    line-height: 26px;
    color: var(--text-light);
    font-weight: 400;
    margin: 0 0 16px 0;
    font-family: var(--font-body);
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    color: var(--text-dark);
    margin: 0 0 16px 0;
    font-family: var(--font-heading);
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.75rem; }
h4 { font-size: 1.5rem; }
h5 { font-size: 1.25rem; }
h6 { font-size: 1.125rem; }


/* ===== COMMON SECTION TITLE ===== */
.common-title { max-width: 720px; margin-bottom: 32px;}
.common-title__subtitle { display: inline-flex; align-items: center; gap: 14px; margin-bottom: 10px; color: var(--danger); font-size: 15px; font-weight: 700; letter-spacing: 1.2px; text-transform: uppercase;}
.common-title__subtitle::after { display: none; }
.common-title__heading { margin: 0; color: var(--primary); font-size: 50px; font-weight: 800; line-height: 55px; letter-spacing: -1px; font-family: Convergence, sans-serif; }
.common-title__highlight { color: var(--secondary);} 
.common-title__text { margin-top: 16px; max-width: 620px; font-size: 16px; line-height: 29px; font-family: Arial, sans-serif; color: var(--text-light);} 
@media (max-width: 768px) { .common-title { margin-bottom: 24px;}
.common-title__heading { font-size: 35px; line-height: 40px;}
.common-title__subtitle { gap: 10px; margin-bottom: 12px; font-size: 13px;}
.common-title__subtitle::after { width: 40px;}
.common-title__text {  font-size: 16px;}}

/* ===== COMMON BUTTON ===== */
.common-btn { display: inline-flex; align-items: center; justify-content: center; gap: 12px; min-height: 48px; padding: 12px 36px; border: 2px solid transparent; border-radius: 999px; background: var(--primary); color: var(--white); font-size: 15px; font-weight: 800; line-height: 1; text-decoration: none; cursor: pointer; position: relative;}
.common-btn:hover,
.common-btn:focus { text-decoration: none; background: var(--danger); border-color: var(--danger); color: var(--white);}
.common-btn::after { display: none; }
.common-btn--outline { background: transparent; color: var(--primary); box-shadow: none; border: 2px solid var(--primary);}
.common-btn--outline:hover,
.common-btn--outline:focus { background: var(--primary); border-color: var(--primary); color: var(--white);}
.common-btn--dark { background: var(--text-dark); border-color: var(--text-dark); color: var(--white); }
.common-btn--dark:hover,
.common-btn--dark:focus { background: var(--secondary); border-color: var(--secondary); color: var(--white);}
.common-btn--sm { min-height: 44px; padding: 10px 22px; font-size: 14px; border-radius: 999px;}
.common-btn--lg { min-height: 60px; padding: 16px 40px; font-size: 16px; border-radius: 999px;}

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar {
    width: 10px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--primary);
}
::-webkit-scrollbar-thumb {
    background: var(--secondary);
    border-radius: 10px;
}
::-webkit-scrollbar-track {
    box-shadow: inset 0 0 5px rgba(0,0,0,0.1);
    border-radius: 10px;
}

/* ===== UTILITY CLASSES ===== */
.bg-dark {
    background-color: var(--text-dark) !important;
}
.bg-light {
    background-color: var(--bg) !important;
}

.content-section {
    padding: 70px 0;
}

/* ===== CARDS ===== */
.work-card {
    background: var(--white);
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    overflow: hidden;
}

.work-content {
    padding: 20px 15px 10px;
}

.client-card {
    padding: 15px;
    background-color: var(--text-dark);
    border-radius: 6px;
    color: var(--white);
}

/* ===== WORDPRESS SPECIFIC ===== */
#wpadminbar {
    display: none !important;
}

.grecaptcha-badge {
    display: none !important;
}

/* ===== CONTAINER ===== */
.container {
    max-width: 1350px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ===== HEADER / NAV STYLES ===== */
.navin-header { position: absolute; top: 18px; left: 0; right: 0; z-index: 60; padding: 0; background: transparent;}
.navin-header__inner {  display: flex;  align-items: center;  justify-content: space-between;  gap: 20px;  background: var(--white);  padding: 10px 20px;  border-radius: 40px;  max-width: 1350px;  margin: 0 auto;}
.navin-header__brand { display: flex; align-items: center; }
.navin-header__logo { max-height: 48px; width: auto; display: block; }
.navin-panel-top { display: none; }
.navin-header__nav { display: flex; align-items: center; gap: 18px; }
.navin-header__link { color: var(--text-dark); text-decoration: none; font-weight: 600; padding: 8px 6px; }
.navin-header__cta { padding: 10px 18px; }
.navin-header__toggle { display: none; background: transparent; border: 0; width: 44px; height: 44px; }
.navin-header__toggle span { display: block; width: 22px; height: 2px; background: var(--text-dark); margin: 5px 0; }
@media (max-width: 900px) {
.navin-header { position: absolute; top: 12px; }
.navin-header__inner { padding: 10px 14px; border-radius: 50px; width: calc(100% - 40px); }
    /* Mobile: convert nav into sliding side panel */
    .navin-header__nav { display: flex; position: fixed; top: 0; left: 0; bottom: 0; align-items: stretch; width: 320px; max-width: 90%; background: #f7f7f7; flex-direction: column; gap: 0; padding: 22px 20px; border-radius: 0; transform: translateX(-110%); transition: transform .36s cubic-bezier(.2,.9,.2,1); }
.navin-header__nav a { padding: 12px 0; border-bottom: 1px solid var(--border); }
.navin-header__toggle { display: inline-flex; align-items: center; justify-content: center; }
    .navin-header__nav.open { transform: translateX(0); z-index: 10002; outline: none; }
    .navin-panel-top { display:flex; align-items:center; justify-content:space-between; margin-bottom:18px; }
    .navin-panel-logo { max-height:40px; }
    .navin-header__close { background: var(--danger); color: #fff; border: 0; width:44px; height:44px; border-radius:50%; display:inline-flex; align-items:center; justify-content:center; font-size:20px; line-height:1; }
    .navin-header__nav .navin-header__link { padding: 18px 0; font-size:16px; font-weight:700; text-transform:uppercase; color: var(--text-dark); border-bottom: 1px solid rgba(0,0,0,0.04); }
    .navin-header__nav .navin-header__cta { margin-top: 14px; }
    .navin-header__toggle.open span { background: var(--primary); }}












