/* ==========================================================================
   Zenith Solutions — Core Stylesheet
   Sales & Marketing Solutions and Real Estate Support Services
   ========================================================================== */

:root {
  /* Corporate blue palette (3-5 colors) */
  --brand: #0a4d8c;          /* primary corporate blue */
  --brand-dark: #0b2545;     /* deep navy */
  --brand-light: #2b7de9;    /* bright accent blue */
  --ink: #1c2733;            /* body text */
  --muted: #5c6b7a;          /* secondary text */
  --line: #e4e9ef;           /* borders */
  --bg: #ffffff;             /* page background */
  --bg-alt: #f4f7fb;         /* alternating sections */
  --white: #ffffff;

  --shadow-sm: 0 2px 10px rgba(11, 37, 69, .06);
  --shadow-md: 0 10px 30px rgba(11, 37, 69, .10);
  --shadow-lg: 0 20px 50px rgba(11, 37, 69, .16);

  --radius: 12px;
  --radius-lg: 20px;

  --container: 1180px;

  --font-head: "Poppins", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --font-body: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
}

/* ---------- Base ---------- */
* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.65;
  font-size: 1rem;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-head);
  color: var(--brand-dark);
  font-weight: 700;
  line-height: 1.2;
  margin-top: 0;
}

a { color: var(--brand); text-decoration: none; transition: color .2s ease; }
a:hover { color: var(--brand-light); }

img { max-width: 100%; height: auto; display: block; }

.container-x {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: 0px !important;
}

.section { padding: 84px 0; }
.section--tight { padding: 56px 0; }
.bg-alt { background: var(--bg-alt); }
.bg-navy { background: var(--brand-dark); color: #dbe6f2; }
.bg-navy h1,.bg-navy h2,.bg-navy h3 { color: #fff; }

/* ---------- Typography helpers ---------- */
.eyebrow {
  display: inline-block;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: .8rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--brand-light);
  margin-bottom: 14px;
}
.section-title { font-size: clamp(1.7rem, 3vw, 2.5rem); margin-bottom: 16px; }
.section-lead { color: var(--muted); font-size: 1.05rem; max-width: 640px; }
.text-center .section-lead { margin-inline: auto; }

/* ---------- Buttons ---------- */
.btn-x {
  --btn-bg: var(--brand);
  --btn-fg: #fff;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 26px;
  border-radius: 999px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: .95rem;
  border: 2px solid var(--btn-bg);
  background: var(--btn-bg);
  color: var(--btn-fg);
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease, color .2s ease;
}
.btn-x:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); color: var(--btn-fg); }
.btn-x--light { --btn-bg: #fff; --btn-fg: var(--brand-dark); }
.btn-x--outline { background: transparent; --btn-fg: var(--brand); }
.btn-x--outline:hover { background: var(--brand); color: #fff; }
.btn-x--ghost-light { background: transparent; border-color: rgba(255,255,255,.5); color: #fff; }
.btn-x--ghost-light:hover { background: #fff; color: var(--brand-dark); border-color:#fff; }

/* ---------- Header / Navbar ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, .96);
  backdrop-filter: saturate(150%) blur(8px);
  border-bottom: 1px solid var(--line);
  transition: box-shadow .25s ease;
}
.site-header.is-scrolled { box-shadow: var(--shadow-sm); }

.navbar-x {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 74px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--brand-dark);
}
.brand__mark {
  width: 38px; height: 38px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--brand), var(--brand-light));
  display: grid; place-items: center;
  color: #fff; font-size: 1.1rem;
}
.brand small { display:block; font-family: var(--font-body); font-weight: 500; font-size:.68rem; letter-spacing:.08em; color: var(--muted); text-transform: uppercase; }

.nav-menu {
  display: flex;
  align-items: center;
  gap: 6px;
  list-style: none;
  margin: 0; padding: 0;
}
.nav-menu a {
  display: block;
  padding: 10px 14px;
  border-radius: 8px;
  font-family: var(--font-head);
  font-weight: 500;
  font-size: .95rem;
  color: var(--ink);
}
.nav-menu a:hover { background: var(--bg-alt); color: var(--brand); }
.nav-menu a.active { color: var(--brand); }
.nav-actions { display: flex; align-items: center; gap: 12px; }

.nav-toggle {
  display: none;
  width: 44px; height: 44px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
  color: var(--brand-dark);
  font-size: 1.2rem;
  cursor: pointer;
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  background: linear-gradient(115deg, var(--brand-dark) 0%, var(--brand) 60%, var(--brand-light) 130%);
  color: #fff;
  overflow: hidden;
}
.hero__inner {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 48px;
  align-items: center;
  padding: 92px 0;
}
.hero h1 { color: #fff; font-size: clamp(2.1rem, 4.2vw, 3.4rem); margin-bottom: 20px; }
.hero p { color: rgba(255,255,255,.88); font-size: 1.12rem; max-width: 540px; margin-bottom: 30px; }
.hero .eyebrow { color: #9ecbff; }
.hero__cta { display: flex; flex-wrap: wrap; gap: 14px; }
.hero__media { position: relative; }
.hero__media img { border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); }
.hero__badge {
  position: absolute; left: -18px; bottom: 26px;
  background: #fff; color: var(--brand-dark);
  border-radius: 14px; padding: 16px 20px;
  box-shadow: var(--shadow-md);
  display: flex; align-items: center; gap: 14px;
}
.hero__badge .num { font-family: var(--font-head); font-weight: 700; font-size: 1.6rem; color: var(--brand); }

/* ---------- Page banner (interior pages) ---------- */
.page-banner {
  background: linear-gradient(115deg, var(--brand-dark), var(--brand));
  color: #fff;
  padding: 66px 0;
}
.page-banner h1 { color: #fff; font-size: clamp(1.9rem, 3.5vw, 2.8rem); margin-bottom: 10px; }
.breadcrumb-x { display: flex; gap: 8px; color: rgba(255,255,255,.75); font-size: .92rem; }
.breadcrumb-x a { color: #9ecbff; }

/* ---------- Stats strip ---------- */
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.stat { text-align: center; padding: 8px; }
.stat .num { font-family: var(--font-head); font-weight: 700; font-size: 2.4rem; color: var(--brand); line-height: 1; }
.stat .label { color: var(--muted); margin-top: 8px; font-size: .95rem; }

/* ---------- Cards / Services ---------- */
.grid { display: grid; gap: 28px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

.card-x {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px;
  box-shadow: var(--shadow-sm);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
  height: 100%;
}
.card-x:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: #cfe0f4; }
.card-x .icon {
  width: 56px; height: 56px; border-radius: 14px;
  background: var(--bg-alt); color: var(--brand);
  display: grid; place-items: center; font-size: 1.4rem;
  margin-bottom: 18px;
}
.card-x h3 { font-size: 1.2rem; margin-bottom: 10px; }
.card-x p { color: var(--muted); margin-bottom: 0; }
.card-link { display:inline-flex; align-items:center; gap:8px; margin-top:16px; font-family:var(--font-head); font-weight:600; font-size:.9rem; }

/* ---------- Feature split ---------- */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 54px;
  align-items: center;
}
.split img { border-radius: var(--radius-lg); box-shadow: var(--shadow-md); }
.tick-list { list-style: none; margin: 24px 0 0; padding: 0; }
.tick-list li { position: relative; padding-left: 34px; margin-bottom: 14px; color: var(--ink); }
.tick-list li i { position: absolute; left: 0; top: 3px; color: var(--brand-light); }

/* ---------- Steps / Process ---------- */
.step { position: relative; padding: 30px; background:#fff; border:1px solid var(--line); border-radius: var(--radius); height:100%; }
.step .no { font-family: var(--font-head); font-weight: 700; font-size: 1rem; color:#fff; background: var(--brand); width:40px; height:40px; border-radius: 50%; display:grid; place-items:center; margin-bottom:16px; }

/* ---------- Testimonials ---------- */
.quote { background:#fff; border:1px solid var(--line); border-radius: var(--radius); padding: 30px; height:100%; box-shadow: var(--shadow-sm); }
.quote .stars { color:#f5a623; margin-bottom: 12px; }
.quote p { font-size: 1.02rem; color: var(--ink); }
.quote .who { display:flex; align-items:center; gap:12px; margin-top:18px; }
.quote .who img { width:48px; height:48px; border-radius:50%; object-fit:cover; }
.quote .who strong { display:block; font-family: var(--font-head); }
.quote .who span { color: var(--muted); font-size:.88rem; }

/* ---------- CTA band ---------- */
.cta-band {
  background: linear-gradient(115deg, var(--brand), var(--brand-light));
  color: #fff;
  border-radius: var(--radius-lg);
  padding: 54px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
  box-shadow: var(--shadow-md);
}
.cta-band h2 { color:#fff; margin-bottom: 8px; }
.cta-band p { color: rgba(255,255,255,.9); margin: 0; }

/* ---------- Team ---------- */
.team-card { background:#fff; border:1px solid var(--line); border-radius: var(--radius); overflow:hidden; text-align:center; box-shadow: var(--shadow-sm); transition: transform .25s ease, box-shadow .25s ease; }
.team-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.team-card img {
    aspect-ratio: 1/1;
    object-fit: revert;
 
    width: 100%;
    /* height: 350px; */
    object-fit: cover;
    object-position: center top;
    display: block;
}
.team-card .body { padding: 20px; }
.team-card h3 { font-size: 1.1rem; margin-bottom: 4px; }
.team-card span { color: var(--brand); font-size:.9rem; font-weight:600; }
.team-card .socials { display:flex; justify-content:center; gap:12px; margin-top:12px; color: var(--muted); }
.team-card .socials a { color: var(--muted); }
.team-card .socials a:hover { color: var(--brand); }

/* ---------- Gallery ---------- */
.gallery { display:grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.gallery-item { position: relative; border-radius: var(--radius); overflow: hidden; cursor: pointer; box-shadow: var(--shadow-sm); }
.gallery-item img { aspect-ratio: 4/3; object-fit: cover; width:100%; transition: transform .4s ease; }
.gallery-item:hover img { transform: scale(1.06); }
.gallery-item .overlay {
  position:absolute; inset:0; background: linear-gradient(to top, rgba(11,37,69,.72), transparent 60%);
  display:flex; align-items:flex-end; padding:16px; color:#fff; opacity:0; transition: opacity .3s ease;
}
.gallery-item:hover .overlay { opacity:1; }
.gallery-item .overlay strong { font-family: var(--font-head); }

/* ---------- Lightbox ---------- */
.lightbox { position: fixed; inset:0; background: rgba(11,37,69,.9); display:none; align-items:center; justify-content:center; z-index: 2000; padding: 24px; }
.lightbox.open { display:flex; }
.lightbox img { max-width: 90vw; max-height: 82vh; border-radius: 10px; box-shadow: var(--shadow-lg); }
.lightbox__close { position:absolute; top:20px; right:26px; background:none; border:none; color:#fff; font-size:2rem; cursor:pointer; }
.lightbox__nav { position:absolute; top:50%; transform:translateY(-50%); background: rgba(255,255,255,.15); border:none; color:#fff; width:52px; height:52px; border-radius:50%; font-size:1.3rem; cursor:pointer; }
.lightbox__nav:hover { background: rgba(255,255,255,.3); }
.lightbox__prev { left:20px; } .lightbox__next { right:20px; }

/* ---------- Accordion (FAQ) ---------- */
.acc { border:1px solid var(--line); border-radius: var(--radius); overflow:hidden; background:#fff; }
.acc__item + .acc__item { border-top:1px solid var(--line); }
.acc__head { width:100%; text-align:left; background:#fff; border:none; padding: 20px 24px; font-family: var(--font-head); font-weight:600; font-size:1.02rem; color: var(--brand-dark); cursor:pointer; display:flex; justify-content:space-between; align-items:center; gap:16px; }
.acc__head i { transition: transform .3s ease; color: var(--brand); }
.acc__item.open .acc__head i { transform: rotate(45deg); }
.acc__body { max-height:0; overflow:hidden; transition: max-height .35s ease; }
.acc__body p { margin: 0; padding: 0 24px 22px; color: var(--muted); }

/* ---------- Forms ---------- */
.form-field { margin-bottom: 18px; }
.form-field label { display:block; font-family: var(--font-head); font-weight:500; font-size:.9rem; margin-bottom:7px; color: var(--brand-dark); }
.form-control-x {
  width:100%; padding: 13px 15px; border:1px solid var(--line); border-radius: 10px;
  font-family: var(--font-body); font-size: .98rem; color: var(--ink); background:#fff;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.form-control-x:focus { outline:none; border-color: var(--brand-light); box-shadow: 0 0 0 3px rgba(43,125,233,.15); }
textarea.form-control-x { min-height: 140px; resize: vertical; }
.form-error { color:#d64545; font-size:.82rem; margin-top:5px; display:none; }
.form-field.invalid .form-control-x { border-color:#d64545; }
.form-field.invalid .form-error { display:block; }
.form-note { padding: 14px 18px; border-radius: 10px; margin-top: 10px; display:none; }
.form-note.success { display:block; background:#e7f6ec; color:#1e7a41; border:1px solid #bfe6cd; }

.info-tile { display:flex; gap:16px; align-items:flex-start; padding: 18px 0; border-bottom:1px solid var(--line); }
.info-tile:last-child { border-bottom:none; }
.info-tile .ic { width:46px; height:46px; border-radius:12px; background: var(--bg-alt); color: var(--brand); display:grid; place-items:center; font-size:1.1rem; flex:0 0 auto; }
.info-tile strong { display:block; font-family: var(--font-head); color: var(--brand-dark); }
.info-tile span { color: var(--muted); }

/* ---------- Map ---------- */
.map-wrap { border-radius: var(--radius); overflow:hidden; box-shadow: var(--shadow-sm); border:1px solid var(--line); line-height:0; }
.map-wrap iframe { width:100%; height:360px; border:0; }

/* ---------- Footer ---------- */
.site-footer { background: var(--brand-dark); color: #b7c6da; padding: 66px 0 26px; }
.site-footer h4 { color:#fff; font-size:1.05rem; margin-bottom:18px; }
.footer-grid { display:grid; grid-template-columns: 1.6fr 1fr 1fr 1.4fr; gap: 40px; }
.site-footer a { color:#b7c6da; }
.site-footer a:hover { color:#fff; }
.footer-links { list-style:none; margin:0; padding:0; }
.footer-links li { margin-bottom: 11px; }
.footer-brand .brand { color:#fff; }
.footer-brand .brand small { color:#8ba1bd; }
.footer-brand p { margin: 16px 0; color:#8ba1bd; }
.footer-social { display:flex; gap:12px; }
.footer-social a { width:40px; height:40px; border-radius:10px; background: rgba(255,255,255,.08); display:grid; place-items:center; color:#fff; }
.footer-social a:hover { background: var(--brand-light); }
.footer-bottom { border-top:1px solid rgba(255,255,255,.12); margin-top: 44px; padding-top:22px; display:flex; justify-content:space-between; gap:14px; flex-wrap:wrap; color:#8ba1bd; font-size:.9rem; }

/* ---------- WhatsApp float ---------- */
.wa-float {
  position: fixed; right: 22px; bottom: 22px; z-index: 1500;
  width: 58px; height: 58px; border-radius: 50%;
  background: #25d366; color:#fff; display:grid; place-items:center;
  font-size: 1.7rem; box-shadow: 0 8px 24px rgba(37,211,102,.45);
  transition: transform .2s ease;
}
.wa-float:hover { transform: scale(1.08); color:#fff; }

/* ---------- Back to top ---------- */
.to-top {
  position: fixed; right: 22px; bottom: 92px; z-index: 1400;
  width: 46px; height:46px; border-radius: 12px; border:none;
  background: var(--brand); color:#fff; font-size:1.1rem; cursor:pointer;
  opacity:0; visibility:hidden; transition: opacity .3s ease, visibility .3s ease, transform .2s ease;
  box-shadow: var(--shadow-md);
}
.to-top.show { opacity:1; visibility:visible; }
.to-top:hover { transform: translateY(-3px); }

/* ---------- Partners ---------- */
.partners { display:flex; flex-wrap:wrap; align-items:center; justify-content:center; gap: 44px; }
.partners span { font-family: var(--font-head); font-weight:700; font-size:1.3rem; color:#9fb0c3; letter-spacing:.02em; }


/* logo */

 img.brand__logo {
    width: 50%;
} 

/*.navbar-x {*/
/*    display: flex;*/
/*    justify-content: space-around;*/
/*    gap: 13px;*/
/*    align-content: space-between;*/
/*    flex-direction: row;*/
/*    align-items: stretch;*/
/*    margin: 1px 10px;*/
/*}*/
.navbar-x {
    display: flex;
    justify-content: space-around;
    gap: 13px;
    align-content: space-between;
    flex-direction: row;
    align-items: stretch;
    margin: 1px 1px;
}
.brand__logo {
    height: 40px;
    width: 100% !important;
}

.nav-menu{
    display:flex;
    align-items:center;
    gap:2px;
    list-style:none;
    margin:0;
    padding:0;
    flex:1;
    justify-content:center;
}

.nav-menu a{
    text-decoration:none;
    color:#222;
    font-weight:500;
}

.header-contact{
    display:flex;
    align-items:center;
    gap:20px;
    white-space:nowrap;
}

.header-contact a{
    text-decoration:none;
    color:#222;
    font-size:14px;
    display:flex;
    align-items:center;
    gap:6px;
}

.header-contact i{
    color:#0d6efd;
}

@media (max-width:1200px){
    .header-contact{
        display:none;
    }
}

p.para1 {
    color: black !important;
}

h3.h3q {
    color: #0b2545 !important
    ;
}




