@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; padding: 0; flex-direction: column; align-items: center; justify-content: center; gap: 5px; line-height: 0; }
.navin-header__toggle span { display: block; width: 22px; height: 2px; background: var(--text-dark); border-radius: 2px; flex: 0 0 auto; }
@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; }
    .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); }}



/* Breadcrumb */
.page-title-of-navinlabels-contact-hero { position: relative;  background: var(--primary);  padding: 160px 20px 100px; overflow: hidden; color: #fff;}
.page-title-of-navinlabels-contact-hero .container { display: flex; justify-content: space-between; align-items: center; gap: 30px; flex-wrap: wrap;}
.page-title-of-navinlabels-left-content { max-width: 550px;}
.page-title-of-navinlabels-contact-hero h1 {  font-size: 56px;  color: #fff;}
.page-title-of-navinlabels-contact-hero p { font-size: 18px; color: rgba(255,255,255,0.92); max-width: 520px;}
.page-title-of-navinlabels-breadcrumb {  display: flex;  align-items: center;  gap: 14px;  font-size: 16px;  font-weight: 500;}
.page-title-of-navinlabels-breadcrumb a {  color: #fff;  text-decoration: none; transition: 0.3s ease;}
.page-title-of-navinlabels-breadcrumb a:hover {  color: var(--white);}
.page-title-of-navinlabels-breadcrumb span { color: var(--accent); font-size: 18px;}
@media (max-width: 991px) {.page-title-of-navinlabels-contact-hero { padding: 90px 20px;}
.page-title-of-navinlabels-contact-hero .container {  flex-direction: column;  align-items: flex-start; }
.page-title-of-navinlabels-contact-hero h1 {  font-size: 42px;}
.page-title-of-navinlabels-breadcrumb {  margin-top: 10px;}}
@media (max-width: 576px) {.page-title-of-navinlabels-contact-hero { padding: 100px 15px 50px;}
.page-title-of-navinlabels-contact-hero h1 {  font-size: 32px;}
.page-title-of-navinlabels-contact-hero p { font-size: 15px;  line-height: 1.7;}
.page-title-of-navinlabels-breadcrumb { font-size: 14px; gap: 10px;}}
/* end Breadcrumb */







/* When header is absolute, page content may need top spacing */
.page-content-top-space {
    padding-top: 20px;
}
   .ndgkdfkghf{
      display:flex;
      align-items:center;
      gap:20px;
      padding:40px;
      background-color:#002D61;
      line-height: 0 !important;
      margin-top: -25px;
    }

    .ndgkdfkghf img{
      width:300px;
    }

/* ===== FFooter ===== */
.site-footer { color: rgba(255,255,255,0.95); padding: 100px 0 28px; font-size: 15px; background-image:
            radial-gradient(rgba(120,179,224,0.06) 1px, transparent 1px),
            linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%); background-size: 14px 14px, 100% 100%; background-color: var(--primary);}
    .site-footer a { color: rgba(255,255,255,0.9); text-decoration: none; }
    .site-footer a:hover { color: var(--accent); }
    .site-footer .footer-top { display: flex; gap: 40px; align-items: flex-start; justify-content: space-between; flex-wrap: wrap; }
    .site-footer .footer-brand img { max-height: 55px; display: block; }
    .site-footer .footer-brand h4 {color: rgba(255,255,255,0.95); font-size: 20px; letter-spacing: 1px; margin: 12px 0; }
    .site-footer .footer-columns { display: flex; gap: 40px; flex: 1; justify-content: flex-end; align-items: flex-start; flex-wrap: wrap; }
    .site-footer .footer-col { min-width: 160px; max-width: 320px; }
    .site-footer .footer-col h4 { color: rgba(255,255,255,0.95); font-size: 18px; letter-spacing: 1px; text-transform: uppercase; margin-bottom: 12px; }
    .site-footer .footer-col ul { list-style: none; margin: 0; padding: 0; font-size: 16px; }
    .site-footer .footer-col li { margin-bottom: 10px; }
    .site-footer .footer-contact { color: rgba(255,255,255,0.9); display: flex; flex-direction: column; gap: 8px; font-size: 16px; }
    .site-footer .footer-contact a i { margin-right: 10px; font-size: 16px; color: var(--white); display: inline-block; vertical-align: middle; }
    .site-footer .footer-bottom { display: flex; align-items: center; justify-content: space-between; border-top: 1px solid rgba(255, 255, 255, 0.062); padding-top: 18px; margin-top: 40px; }
    .site-footer .copyright { margin: 0; color: rgba(255,255,255,0.7); font-size: 16px; }
    .site-footer .back-to-top { font-size: 16px; color: rgba(255,255,255,0.95); font-weight: 700; display: inline-flex; align-items: center; gap: 8px; }
    .site-footer .back-to-top i { font-size: 16px; line-height: 1; color: var(--white); display: inline-block; }
    @media (max-width: 900px) {
        .site-footer .footer-top { gap: 22px; }
        .site-footer .footer-columns { justify-content: flex-start; }
        .site-footer .footer-col { width: 50%; }
        .site-footer .footer-brand { order: -1; width: 100%; margin-bottom: 12px; }}
    @media (max-width: 576px) {
        .site-footer .footer-col { width: 100%; }
        .site-footer .footer-bottom { flex-direction: column; gap: 10px; align-items: flex-start; }
        .site-footer .back-to-top { align-self: flex-end; }}
















/* home page css */

.about-us-features { padding: 80px 0; background: var(--bg); color: var(--text-dark); }
.about-grid { display: grid; grid-template-columns: 60% 40%; gap: 50px; align-items: start; }
.about-left .section-caption { color: var(--danger); font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: 12px; }
/* .about-left .section-heading { font-family: var(--font-heading); font-size: 36px; color: var(--primary); margin: 0 0 18px; }
.about-left .section-lead {  margin-bottom: 22px; } */
.about-callout { border: 1px solid #c2bab4; padding: 30px; border-radius: 8px; background: linear-gradient(180deg, rgba(255,255,255,0.6), rgba(255,255,255,0.4)); }
.about-callout h3 { margin: 0 0 8px; color: var(--primary); font-size: 18px; }
.about-callout p { margin: 0; color: var(--text-light); }
/* Feature list */
.feature-list { list-style: none; margin: 0; padding: 0; }
.feature-item { display: flex; gap: 16px; padding: 18px 0; align-items: flex-start; border-bottom: 1px solid #c2bab4; }
.feature-icon { min-width: 46px; min-height: 46px; border: 2px solid var(--secondary); border-radius: 8px; display: inline-flex; align-items: center; justify-content: center; color: var(--secondary); font-weight: 800; font-size: 18px; background: rgba(255,255,255,0.02); }
.feature-body h4 { margin: 0 0 6px; font-size: 16px; color: var(--text-dark); }
.feature-body p { margin: 0;  font-size: 15px; }
@media (max-width: 992px) { .about-grid { grid-template-columns: 1fr 320px; gap: 32px; }}
@media (max-width: 768px) { .about-grid { grid-template-columns: 1fr; }
    .about-left .section-heading { font-size: 28px; }
    .about-callout { margin-top: 18px; }
    .feature-item { padding: 14px 0; }}
.about-iconboxes { padding: 0px 10px; border-bottom: 1px solid #c2bab4;  border-top: 1px solid #c2bab4; background: var(--bg); }
.iconboxes-grid { list-style:none; margin:0; padding:0; display:grid; grid-template-columns: repeat(4,1fr); gap: 0; }
.iconbox-item { padding: 70px 28px; text-align:left; border-right: 1px solid #c2bab4; }
.iconbox-item:last-child { border-right: none; }
.iconbox-icon { font-size: 32px; margin-bottom: 14px; color: var(--primary); }
.iconbox-title { margin: 0 0 8px; font-size: 18px; color: var(--text-dark); }
.iconbox-text { margin:0; color: var(--text-light); line-height:1.7; }
@media (max-width: 992px) {
    .iconboxes-grid { grid-template-columns: repeat(2,1fr); }}
@media (max-width: 576px) {
    .iconboxes-grid { grid-template-columns: 1fr; }
    .iconbox-item { border-right: none; border-bottom: 1px solid #c2bab4; }}

