@import url("https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,600;0,700;1,400&family=DM+Sans:wght@300;400;500;600&display=swap");
:root {
  --d: #0a1628;
  --d2: #132040;
  --g: #c17f24;
  --g2: #dba040;
  --cr: #f7f4ee;
  --pp: #eee9df;
  --wh: #fff;
  --mt: #5a6a7e;
  --bd: #ddd5c8;
  --tx: #1a2435;
  --fh: "Cormorant Garamond", Georgia, serif;
  --fb: "DM Sans", system-ui, sans-serif;
}
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: var(--fb);
  background: var(--cr);
  color: var(--tx);
  line-height: 1.7;
  font-size: 16px;
}
a {
  color: inherit;
  text-decoration: none;
}
img {
  max-width: 100%;
  display: block;
}
.w {
   max-width: 100%; 
   width: 95%; 
  margin: 0 auto;
  padding: 0 24px;
}
.ws {
  max-width: 840px;
  margin: 0 auto;
  padding: 0 24px;
}
.s {
  padding: 76px 0;
}
.ss {
  padding: 50px 0;
}
.bgp {
  background: var(--pp);
}
.lbl {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--g);
}
.h1 {
  font-family: var(--fh);
  font-size: clamp(32px, 4.5vw, 56px);
  font-weight: 700;
  color: var(--d);
  line-height: 1.1;
}
.h2 {
  font-family: var(--fh);
  font-size: clamp(24px, 3vw, 40px);
  font-weight: 600;
  color: var(--d);
  line-height: 1.2;
}
.h3 {
  font-family: var(--fh);
  font-size: 25px;
  font-weight: 600;
  color: var(--d);
}
.em {
  font-style: italic;
  color: var(--g);
}
.bar {
  width: 44px;
  height: 3px;
  background: linear-gradient(90deg, var(--g), var(--g2));
  border-radius: 2px;
  margin: 12px 0 20px;
}
.tag {
 display: inline-block;
  font-size: 11px;
  font-weight: 700;
  
  text-transform: uppercase;
  padding: 3px 9px;
  border-radius: 20px;
  background: rgb(245, 245, 245);
  color: var(--g);

}
.btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 11px 24px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  border: 2px solid transparent;
  font-family: var(--fb);
  transition: 0.2s;
  text-decoration: none;
}
.bi {
  background: var(--d);
  color: var(--wh);
}
.bi:hover {
  background: var(--d2);
  transform: translateY(-1px);
}
.bg {
  background: var(--g);
  color: var(--d);
}
.bg:hover {
  background: var(--g2);
  transform: translateY(-1px);
}
.bo {
  background: transparent;
  color: var(--d);
  border-color: var(--d);
}
.bo:hover {
  background: var(--d);
  color: var(--wh);
}
.bow {
  background: transparent;
  color: var(--wh);
  border-color: rgba(255, 255, 255, 0.38);
}
.bow:hover {
  background: rgba(255, 255, 255, 0.1);
}
.bsm {
  padding: 8px 16px;
  font-size: 13px;
}
/* Topbar */
.topbar {
  background: var(--d);
  padding: 7px 0;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.55);
}
.tbi {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
}
.tbi a {
  color: var(--g2);
  font-weight: 500;
}
.tbi a:hover {
  color: #fff;
}
.tbr {
  display: flex;
  gap: 16px;
}
/* Nav */
.navs {
  background: var(--wh);
  border-bottom: 1px solid var(--bd);
  position: sticky;
  top: 0;
  z-index: 300;
  box-shadow: 0 2px 12px rgba(10, 22, 40, 0.06);
}
.ni {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}
.lm {
  width: 38px;
  height: 38px;
  background: var(--d);
  border-radius: 7px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--fh);
  font-size: 17px;
  font-weight: 700;
  color: var(--g);
}
.ln {
  font-family: var(--fh);
  font-size: 20px;
  font-weight: 700;
  color: var(--d);
  line-height: 1;
}
.lt {
  font-size: 10px;
  color: var(--mt);
}
.nl {
  display: flex;
  align-items: center;
  gap: 1px;
  list-style: none;
}
.nl a {
  font-size: 13px;
  font-weight: 500;
  color: var(--tx);
  padding: 7px 11px;
  border-radius: 6px;
  transition: 0.15s;
}
.nl a:hover,
.nl a.on {
  background: var(--pp);
  color: var(--d);
  font-weight: 600;
}
.nl .nc {
  background: var(--d) !important;
  color: var(--wh) !important;
  border-radius: 7px !important;
  font-weight: 600 !important;
  padding: 8px 15px !important;
}
.nl .nc:hover {
  background: var(--d2) !important;
}
.ham {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--d);
  font-size: 25px;
  padding: 4px;
}
.mob {
  display: none;
  flex-direction: column;
  gap: 2px;
  background: var(--wh);
  border-top: 1px solid var(--bd);
  padding: 12px 22px;
}
.mob a {
  display: block;
  padding: 10px 12px;
  border-radius: 6px;
  font-weight: 500;
  font-size: 14.5px;
}
.mob a:hover {
  background: var(--pp);
}
/* Page Hero */
.ph {
  background: linear-gradient(135deg, var(--d) 0%, var(--d2) 100%);
  padding: 23px 0 56px;
  position: relative;
  overflow: hidden;
}
.ph::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--g), var(--g2), var(--g));
}
.phlbl {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--g);
  margin-bottom: 11px;
}
.pht {
  font-family: var(--fh);
  font-size: clamp(26px, 4vw, 44px);
  font-weight: 700;
  color: var(--wh);
  margin-bottom: 12px;
  line-height: 1.12;
}
.phs {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.56);
  max-width: 520px;
  line-height: 1.75;
}
.brc {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.38);
  margin-bottom: 16px;
}
.brc a {
  cursor: pointer;
  transition: 0.15s;
}
.brc a:hover {
  color: var(--g2);
}
.bsep {
  color: rgba(255, 255, 255, 0.2);
}
/* Cards */
.sg {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 40px;
}
.sc {
  background: var(--wh);
  border: 1px solid var(--bd);
  border-radius: 10px;
  padding: 24px 20px;
  transition: 0.25s;
  position: relative;
  overflow: hidden;
}
.sc::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--g), var(--g2));
  transform: scaleX(0);
  transition: 0.25s;
  transform-origin: left;
}
.sc:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 44px rgba(10, 22, 40, 0.14);
  border-color: var(--g);
}
.sc:hover::after {
  transform: scaleX(1);
}
.scic {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--d), var(--d2));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 19px;
  margin-bottom: 14px;
}
.sct {
  font-family: var(--fh);
  font-size: 17px;
  font-weight: 600;
  color: var(--d);
  margin-bottom: 7px;
  line-height: 1.25;
}
.scd {
  font-size: 13px;
  color: var(--mt);
  line-height: 1.65;
  margin-bottom: 12px;
}
.scl {
  font-size: 12.5px;
  font-weight: 600;
  color: var(--g);
}
/* Testimonials */
.tg {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 40px;
}
.tc {
  background: var(--wh);
  border: 1px solid var(--bd);
  border-radius: 10px;
  padding: 26px 22px;
}
.tcs {
  color: var(--g);
  font-size: 12.5px;
  letter-spacing: 2px;
  margin-bottom: 12px;
}
.tcq {
  font-size: 14px;
  color: var(--tx);
  line-height: 1.75;
  font-style: italic;
  margin-bottom: 16px;
}
.tcau {
  display: flex;
  align-items: center;
  gap: 10px;
}
.tcav {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--d);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--g);
  font-weight: 700;
  font-size: 13px;
  font-family: var(--fh);
}
.tcn {
  font-weight: 600;
  font-size: 13px;
  color: var(--d);
}
.tcr {
  font-size: 11px;
  color: var(--mt);
}
/* CTA Band */
.cband {
  background: linear-gradient(135deg, var(--d), var(--d2));
  border-radius: 16px;
  padding: 54px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  position: relative;
  overflow: hidden;
}
.cband::before {
  /* content: ""; */
  position: absolute;
  right: -40px;
  top: -40px;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(193, 127, 36, 0.1), transparent 70%);
}
.cbt {
  font-family: var(--fh);
  font-size: clamp(22px, 3vw, 34px);
  font-weight: 600;
  color: var(--wh);
  margin-bottom: 9px;
}
.cbs {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.56);
  max-width: 420px;
}
.cbbtns {
  display: flex;
  gap: 11px;
  flex-wrap: wrap;
  flex-shrink: 0;
}
/* Blog */
.bgrid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 40px;
}
.bcard {
  background: var(--wh);
  border: 1px solid var(--bd);
  border-radius: 10px;
  overflow: hidden;
  transition: 0.25s;
  display: block;
}
.bcard:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 44px rgba(10, 22, 40, 0.14);
}
.bcimg {
  height: 175px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 40px;
  position: relative;
}
.bcimgt {
  position: absolute;
  top: 13px;
  left: 13px;
}
.bcb {
  padding: 18px;
}
.bcdt {
  font-size: 11px;
  color: var(--mt);
  margin-bottom: 8px;
}
.bct {
  font-family: var(--fh);
  font-size: 20px;
  font-weight: 700;
  color: var(--d);
  margin-bottom: 7px;
  line-height: 1.3;
}
.bcex {
  font-size: 13px;
  color: var(--mt);
  line-height: 1.7;
  margin-bottom: 11px;
}
.bcl {
  font-size: 12.5px;
  font-weight: 600;
  color: var(--g);
}
/* Cities */
.cg {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 8px;
  margin-top: 26px;
}
.cp {
  padding: 7px 12px;
  background: var(--wh);
  border: 1px solid var(--bd);
  border-radius: 7px;
  font-size: 12.5px;
  font-weight: 500;
  color: var(--d);
  text-align: center;
  transition: 0.18s;
  display: block;
}
.cp:hover {
  border-color: var(--g);
  color: var(--g);
  background: #fffcf5;
}
/* Why */
.wg {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 52px;
  align-items: center;
}
.wvis {
  background: linear-gradient(135deg, var(--d), var(--d2));
  border-radius: 14px;
  padding: 40px 32px;
  position: relative;
}
.wvg {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.sb {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 9px;
  padding: 18px;
  text-align: center;
}
.sbn {
  font-family: var(--fh);
  font-size: 34px;
  font-weight: 700;
  color: var(--g2);
  line-height: 1;
}
.sbl {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.48);
  margin-top: 4px;
  line-height: 1.4;
}
.abadge {
  position: absolute;
  bottom: -16px;
  right: 24px;
  background: var(--wh);
  border-radius: 9px;
  padding: 12px 16px;
  box-shadow: 0 10px 36px rgba(10, 22, 40, 0.14);
  display: flex;
  align-items: center;
  gap: 10px;
}
.abav {
  width: 38px;
  height: 38px;
  background: var(--d);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--fh);
  font-size: 15px;
  font-weight: 700;
  color: var(--g);
}
.abn {
  font-weight: 600;
  font-size: 13px;
  color: var(--d);
  line-height: 1.2;
}
.abr {
  font-size: 11px;
  color: var(--mt);
}
.wpts {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 20px;
}
.wp {
  display: flex;
  align-items: flex-start;
  gap: 13px;
}
.wpic {
  width: 40px;
  height: 40px;
  border-radius: 9px;
  background: rgba(193, 127, 36, 0.09);
  border: 1px solid rgba(193, 127, 36, 0.22);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
}
.wpt {
  font-weight: 600;
  font-size: 14.5px;
  color: var(--d);
  margin-bottom: 3px;
}
.wpd {
  font-size: 13px;
  color: var(--mt);
  line-height: 1.6;
}
/* About */
.ag {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 52px;
  align-items: center;
}
.tbox {
  background: var(--wh);
  border: 1px solid var(--bd);
  border-radius: 13px;
  padding: 30px 26px;
  text-align: center;
}
.tav {
  width: 90px;
  height: 90px;
  background: var(--d);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--fh);
  font-size: 34px;
  font-weight: 700;
  color: var(--g);
  margin: 0 auto 16px;
}
.tn {
  font-family: var(--fh);
  font-size: 22px;
  font-weight: 700;
  color: var(--d);
  margin-bottom: 4px;
}
.tr {
  color: var(--g);
  font-weight: 600;
  font-size: 12.5px;
  margin-bottom: 12px;
}
.tbio {
  font-size: 13.5px;
  color: var(--mt);
  line-height: 1.75;
  text-align: justify;
  margin-bottom: 15px;
}
.tbdgs {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  justify-content: center;
}
.tbdg {
  background: var(--pp);
  border: 1px solid var(--bd);
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 500;
  color: var(--d);
}
.vg {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
  margin-top: 38px;
}
.vc {
  background: var(--wh);
  border: 1px solid var(--bd);
  border-radius: 10px;
  padding: 20px 18px;
}
.vcic {
  font-size: 22px;
  margin-bottom: 8px;
}
.vct {
  font-weight: 700;
  font-size: 14px;
  color: var(--d);
  margin-bottom: 4px;
}
.vcd {
  font-size: 13px;
  color: var(--mt);
  line-height: 1.6;
}
.tl {
  margin-top: 32px;
  position: relative;
}
.tl::before {
  content: "";
  position: absolute;
  left: 17px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--bd);
}
.tli {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
}
.tldot {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--d);
  border: 3px solid var(--g);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  color: var(--g);
  font-weight: 700;
  flex-shrink: 0;
  z-index: 1;
  position: relative;
}
.tlc {
  flex: 1;
  padding-top: 6px;
}
.tlyr {
  font-size: 11px;
  font-weight: 600;
  color: var(--g);
  margin-bottom: 2px;
}
.tltx {
  font-size: 14.5px;
  font-weight: 600;
  color: var(--d);
  margin-bottom: 2px;
}
.tld {
  font-size: 12.5px;
  color: var(--mt);
}
/* Service single */
.ssgr {
  display: grid;
  grid-template-columns: 1fr 296px;
  gap: 38px;
  align-items: start;
}
.sscont h2 {
  font-family: var(--fh);
  font-size: 24px;
  font-weight: 600;
  color: var(--d);
  margin: 32px 0 12px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--bd);
}
.sscont h2:first-child {
  margin-top: 0;
}
.sscont p {
  font-size: 15px;
  color: var(--mt);
  line-height: 1.87;
  margin-bottom: 14px;
}
.sscont ul {
  list-style: none;
  margin-bottom: 15px;
}
.sscont ul li {
  padding: 7px 0 7px 22px;
  position: relative;
  font-size: 14.5px;
  color: var(--mt);
  border-bottom: 1px solid var(--bd);
}
.sscont ul li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--g);
  font-weight: 700;
}
.sscont blockquote {
  border-left: 4px solid var(--g);
  padding: 13px 20px;
  margin: 22px 0;
  background: var(--pp);
  border-radius: 0 8px 8px 0;
  font-style: italic;
  color: var(--tx);
  font-size: 15px;
}
.sbx {
  background: var(--wh);
  border: 1px solid var(--bd);
  border-radius: 10px;
  margin-bottom: 16px;
  overflow: hidden;
  position: sticky;
  top: 80px;
}
.sbxh {
  background: var(--d);
  padding: 13px 17px;
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--g2);
}
.sbxb {
  padding: 14px 17px;
}
.sblnk {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 9px 10px;
  border-radius: 6px;
  font-size: 13px;
  color: var(--d);
  font-weight: 500;
  transition: 0.15s;
}
.sblnk:hover {
  background: var(--pp);
  color: var(--g);
}
.sbarr {
  margin-left: auto;
  color: var(--mt);
  font-size: 11px;
}
.qpill {
  display: inline-block;
  background: var(--pp);
  border: 1px solid var(--bd);
  padding: 3px 10px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 500;
  color: var(--d);
  margin: 3px;
}
/* Blog single */
.bsgr {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 38px;
  align-items: start;
}
.bcont p {
  font-size: 15.5px;
  color: var(--tx);
  line-height: 1.9;
  margin-bottom: 17px;
}
.bcont h2 {
  font-family: var(--fh);
  font-size: 23px;
  font-weight: 600;
  color: var(--d);
  margin: 32px 0 12px;
  padding-bottom: 9px;
  border-bottom: 2px solid var(--bd);
}
.bcont blockquote {
  border-left: 4px solid var(--g);
  padding: 13px 20px;
  margin: 22px 0;
  background: var(--pp);
  border-radius: 0 8px 8px 0;
  font-style: italic;
  color: var(--tx);
  font-size: 15px;
}
.authbox {
  background: var(--wh);
  border: 1px solid var(--bd);
  border-radius: 10px;
  padding: 20px;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-top: 32px;
}
.authav {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--d);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--fh);
  font-size: 19px;
  color: var(--g);
  font-weight: 700;
  flex-shrink: 0;
}
.authn {
  font-weight: 700;
  color: var(--d);
  font-size: 15px;
  margin-bottom: 2px;
}
.authr {
  font-size: 12px;
  color: var(--g);
  margin-bottom: 5px;
}
.authbi {
  font-size: 12.5px;
  color: var(--mt);
  line-height: 1.7;
}
/* FAQ */
.fl {
  margin-top: 28px;
}
.fi {
  border: 1px solid var(--bd);
  border-radius: 10px;
  margin-bottom: 8px;
  overflow: hidden;
  background: var(--wh);
}
.fq {
  width: 100%;
  background: none;
  border: none;
  padding: 17px 20px;
  text-align: left;
  font-family: var(--fb);
  font-size: 15px;
  font-weight: 600;
  color: var(--d);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  transition: 0.15s;
}
.fq:hover {
  background: var(--pp);
}
.fq.on {
  background: var(--d);
  color: var(--wh);
}
.fqic {
  font-size: 19px;
  flex-shrink: 0;
  transition: transform 0.26s;
  font-style: normal;
}
.fq.on .fqic {
  transform: rotate(45deg);
}
.fa {
  display: none;
  padding: 16px 20px;
  font-size: 14.5px;
  line-height: 1.82;
  color: var(--mt);
  border-top: 1px solid var(--bd);
}
.fa.on {
  display: block;
}
/* Contact */
.cgr {
  display: grid;
  grid-template-columns: 1fr 350px;
  gap: 40px;
  align-items: start;
}
.fgrp {
  margin-bottom: 15px;
}
.flab {
  display: block;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--d);
  margin-bottom: 5px;
}
.finp {
  width: 100%;
  padding: 11px 13px;
  border: 1.5px solid var(--bd);
  border-radius: 7px;
  font-family: var(--fb);
  font-size: 14px;
  color: var(--tx);
  background: var(--wh);
  transition: 0.15s;
  outline: none;
}
.finp:focus {
  border-color: var(--d);
  box-shadow: 0 0 0 3px rgba(10, 22, 40, 0.07);
}
textarea.finp {
  resize: vertical;
  min-height: 115px;
}
.fr {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.ccard {
  background: var(--d);
  border-radius: 11px;
  padding: 26px 22px;
  color: var(--wh);
  margin-bottom: 16px;
}
.cct {
  font-family: var(--fh);
  font-size: 19px;
  font-weight: 600;
  color: var(--wh);
  margin-bottom: 14px;
}
.ccit {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  padding: 11px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}
.ccit:last-child {
  border: none;
}
.ccic {
  width: 33px;
  height: 33px;
  border-radius: 7px;
  background: rgba(193, 127, 36, 0.14);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  flex-shrink: 0;
}
.cclbl {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 2px;
  font-weight: 500;
}
.ccval {
  font-size: 13px;
  color: var(--wh);
  font-weight: 500;
}
.ccval a {
  color: var(--g2);
}
.hrscard {
  background: var(--wh);
  border: 1px solid var(--bd);
  border-radius: 11px;
  padding: 18px;
}
.hrst {
  font-weight: 700;
  font-size: 13.5px;
  color: var(--d);
  margin-bottom: 10px;
}
.hrsr {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  padding: 7px 0;
  border-bottom: 1px solid var(--bd);
}
.hrsr:last-child {
  border: none;
}
.hrsd {
  color: var(--mt);
}
.hrsh {
  font-weight: 500;
  color: var(--d);
}
/* Footer */
footer {
  background: var(--d);
  color: rgba(255, 255, 255, 0.6);
  padding: 54px 0 0;
  font-size: 13px;
}
.fgg {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 38px;
  margin-bottom: 38px;
}
.flog {
  font-family: var(--fh);
  font-size: 25px;
  font-weight: 700;
  color: var(--wh);
  margin-bottom: 10px;
}
.flog span {
  color: var(--g);
}
.fab {
  font-size: 13px;
  line-height: 1.82;
  margin-bottom: 15px;
}
.fcon a {
  display: block;
  color: var(--g2);
  font-weight: 500;
  margin-bottom: 6px;
  font-size: 13px;
}
.fcon a:hover {
  color: var(--wh);
}
.fcol h4 {
  font-size: 11.5px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  color: var(--wh);
  margin-bottom: 13px;
}
.fcol ul {
  list-style: none;
}
.fcol ul li {
  margin-bottom: 7px;
}
.fcol ul a {
  color: rgba(255, 255, 255, 0.5);
  transition: 0.15s;
  font-size: 12.5px;
}
.fcol ul a:hover {
  color: var(--g2);
}
.fbot {
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  padding: 17px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 11.5px;
  color: rgba(255, 255, 255, 0.3);
}
.fbot a {
  color: rgba(255, 255, 255, 0.4);
}
.fbot a:hover {
  color: var(--g2);
}
.fdisc {
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 7px;
  padding: 12px 16px;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.3);
  line-height: 1.7;
  margin-bottom: 26px;
}
.formok {
  background: #f0fdf4;
  border: 1px solid #86efac;
  border-radius: 7px;
  padding: 12px 16px;
  color: #166534;
  font-size: 14px;
  display: none;
  margin-bottom: 12px;
}
@media (max-width: 1040px) {
  .wg,
  .ag,
  .ssgr,
  .bsgr,
  .cgr {
    grid-template-columns: 1fr;
  }
  .sg {
    grid-template-columns: 1fr 1fr 1fr;
  }
  .cband {
    flex-direction: column;
    padding: 36px 28px;
  }
  .fgg {
    grid-template-columns: 1fr 1fr;
  }
  .cg {
    grid-template-columns: repeat(4, 1fr);
  }
  .abadge {
    display: none;
  }
}
@media (max-width: 700px) {
  .sg,
  .tg,
  .bgrid,
  .vg,
  .fgg,
  .cg {
    grid-template-columns: 1fr 1fr;
  }
  .nl {
    display: none;
  }
  .ham {
    display: block;
  }
  .s {
    padding: 52px 0;
  }
  .ss {
    padding: 36px 0;
  }
  .tbr {
    display: none;
  }
  .fr {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 460px) {
  .sg,
  .cg,
  .tg,
  .bgrid,
  .vg,
  .fgg {
    grid-template-columns: 1fr;
  }
}

/* ═══ HERO HOME ═══ */
.hero-home {
  background: var(--d);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  min-height: 100vh;
  padding: 0;
}
.hero-bg-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      ellipse at 65% 40%,
      rgba(193, 127, 36, 0.14) 0%,
      transparent 55%
    ),
    radial-gradient(
      ellipse at 10% 80%,
      rgba(30, 48, 96, 0.7) 0%,
      transparent 45%
    );
  pointer-events: none;
}
.hero-grid-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.028;
  background-image:
    linear-gradient(rgba(193, 127, 36, 0.6) 1px, transparent 1px),
    linear-gradient(90deg, rgba(193, 127, 36, 0.6) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 440px;
  gap: 56px;
  /*align-items: center;*/
  position: relative;
  z-index: 1;
  padding: 100px 0 80px;
}
.hero-left {
}
.hero-eyebrow {
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--g);
  margin-bottom: 22px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.hero-eyebrow::before {
  content: "";
  width: 28px;
  height: 2px;
  background: var(--g);
  display: inline-block;
}
.hero-h1 {
  font-family: var(--fh);
  font-size: clamp(42px, 5.5vw, 72px);
  font-weight: 700;
  color: var(--wh);
  line-height: 1.05;
  margin-bottom: 22px;
  letter-spacing: -0.5px;
}
.hero-gold {
  color: var(--g2);
  display: block;
}
.hero-para {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.62);
  line-height: 1.82;
  margin-bottom: 34px;
  max-width: 500px;
}
.hero-btns {
  display: flex;
  gap: 13px;
  flex-wrap: wrap;
  margin-bottom: 44px;
}
.hero-btn-lg {
  padding: 13px 28px;
  font-size: 15px;
}
.hero-stats {
  display: flex;
  align-items: center;
  gap: 0;
  flex-wrap: wrap;
}
.hero-stat {
  text-align: center;
  padding: 0 22px;
}
.hero-stat:first-child {
  padding-left: 0;
}
.hero-stat-n {
  display: block;
  font-family: var(--fh);
  font-size: 34px;
  font-weight: 700;
  color: var(--g2);
  line-height: 1;
  margin-bottom: 4px;
}
.hero-stat-l {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.42);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.hero-stat-div {
  width: 1px;
  height: 36px;
  background: rgba(255, 255, 255, 0.1);
  margin: 0;
}
/* Hero Card */
.hero-right {
}
.hero-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  padding: 0;
  overflow: hidden;
  backdrop-filter: blur(12px);
}
.hero-card-head {
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 22px 24px 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.hc-avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--g), var(--g2));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--fh);
  font-size: 17px;
  font-weight: 700;
  color: var(--d);
  flex-shrink: 0;
}
.hc-name {
  font-size: 14.5px;
  font-weight: 600;
  color: var(--wh);
  line-height: 1.2;
}
.hc-role {
  font-size: 11.5px;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 2px;
}
.hc-badge {
  margin-left: auto;
  background: rgba(34, 197, 94, 0.15);
  border: 1px solid rgba(34, 197, 94, 0.3);
  color: #4ade80;
  font-size: 11px;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 20px;
  letter-spacing: 0.04em;
  flex-shrink: 0;
}
.hc-divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.06);
}
.hc-label {
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.35);
  padding: 14px 24px 8px;
}
.hc-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  transition: 0.15s;
  text-decoration: none;
}
.hc-row:last-of-type {
  border-bottom: none;
}
.hc-row:hover {
  background: rgba(255, 255, 255, 0.06);
}
.hc-ic {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  background: rgba(193, 127, 36, 0.14);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  flex-shrink: 0;
}
.hc-rt {
  font-size: 13.5px;
  font-weight: 600;
  color: var(--wh);
  margin-bottom: 2px;
}
.hc-rs {
  font-size: 11.5px;
  color: rgba(255, 255, 255, 0.5);
}
.hc-arr {
  margin-left: auto;
  color: rgba(255, 255, 255, 0.3);
  font-size: 14px;
  flex-shrink: 0;
}
.hc-cta-btn {
  display: block;
  background: var(--g);
  color: var(--d);
  font-weight: 700;
  font-size: 14px;
  text-align: center;
  padding: 16px 24px;
  margin: 0;
  text-decoration: none;
  transition: 0.2s;
  font-family: var(--fb);
}
.hc-cta-btn:hover {
  background: var(--g2);
}
/* Trust */
.trust {
  background: var(--pp);
  border-bottom: 1px solid var(--bd);
  padding: 16px 0;
}
.tri {
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  flex-wrap: wrap;
  gap: 16px;
}
.ti {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12.5px;
  font-weight: 500;
  color: var(--mt);
}
/* Responsive hero */
@media (max-width: 1040px) {
  .hero-inner {
    grid-template-columns: 1fr;
    padding: 72px 0 60px;
  }
  .hero-right {
    display: none;
  }
}
@media (max-width: 700px) {
  .hero-h1 {
    font-size: 38px;
  }
  .hero-stat {
    padding: 0 14px;
  }
  .hero-stat-n {
    font-size: 26px;
  }
}

/* ── Service Page Layout ── */

.cs-wrap {
  display: grid;
  grid-template-columns: 250px 1fr 274px;
  gap: 30px;
  align-items: start;
  margin: 44px 0 60px;
}
.toc-sidebar {
  position: sticky;
  top: 80px;
  background: var(--wh);
  border: 1px solid var(--bd);
  border-radius: 10px;
  overflow: hidden;
  max-height: 88vh;
  overflow-y: auto;
}
.toc-head {
  background: var(--d);
  color: var(--g2);
  padding: 11px 15px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.toc-link {
  display: block;
  padding: 9px 14px;
  font-size: 12.5px;
  color: var(--tx);
  border-bottom: 1px solid var(--bd);
  text-decoration: none;
  transition: 0.15s;
  line-height: 1.35;
}
.toc-link:hover,
.toc-link.active {
  background: var(--pp);
  color: var(--g);
  font-weight: 600;
}
.toc-link:last-of-type {
  border-bottom: none;
}
.toc-cta {
  padding: 12px 14px;
}
.cs-section {
  margin-bottom: 38px;
  scroll-margin-top: 88px;
}
.cs-h2 {
  font-family: var(--fh);
  font-size: 23px;
  font-weight: 600;
  color: var(--d);
  margin-bottom: 12px;
  padding-bottom: 9px;
  border-bottom: 2px solid var(--bd);
}
.cs-h3 {
  font-family: var(--fh);
  font-size: 18px;
  font-weight: 600;
  color: var(--d);
  margin: 18px 0 9px;
}
.cs-p {
  font-size: 15px;
  color: var(--mt);
  line-height: 1.87;
  margin-bottom: 13px;
}
.cs-ul {
  list-style: none;
  margin-bottom: 14px;
}
.cs-ul li {
  padding: 7px 0 7px 22px;
  position: relative;
  font-size: 14px;
  color: var(--mt);
  border-bottom: 1px solid var(--bd);
  line-height: 1.6;
}
.cs-ul li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--g);
  font-weight: 700;
}
.cs-bq {
  border-left: 4px solid var(--g);
  padding: 12px 18px;
  margin: 18px 0;
  background: var(--pp);
  border-radius: 0 8px 8px 0;
  font-style: italic;
  color: var(--tx);
  font-size: 14.5px;
}
.cs-right {
  position: sticky;
  top: 80px;
}
.cbox {
  background: var(--d);
  border-radius: 10px;
  padding: 20px;
  margin-bottom: 13px;
}
.cbox-t {
  font-family: var(--fh);
  font-size: 17px;
  color: #fff;
  margin-bottom: 7px;
}
.cbox-s {
  font-size: 12.5px;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 12px;
  line-height: 1.6;
}
.bk-row {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.07);
  border-radius: 7px;
  padding: 10px;
  margin-top: 12px;
}
.bk-av {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--g), var(--g2));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--fh);
  font-size: 13px;
  font-weight: 700;
  color: var(--d);
  flex-shrink: 0;
}
.bk-n {
  font-size: 12.5px;
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
}
.bk-r {
  font-size: 10.5px;
  color: rgba(255, 255, 255, 0.5);
}
.ibox {
  background: var(--wh);
  border: 1px solid var(--bd);
  border-radius: 10px;
  padding: 16px;
  margin-bottom: 13px;
}
.ibox-t {
  font-weight: 700;
  font-size: 12.5px;
  color: var(--d);
  margin-bottom: 9px;
}
.ifact {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 7px 0;
  border-bottom: 1px solid var(--bd);
  font-size: 12.5px;
  color: var(--mt);
}
.ifact:last-child {
  border: none;
}
.ifact strong {
  color: var(--d);
}
.rel-link {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 8px 9px;
  border-radius: 6px;
  font-size: 12.5px;
  color: var(--d);
  font-weight: 500;
  transition: 0.15s;
  text-decoration: none;
}
.rel-link:hover {
  background: var(--pp);
  color: var(--g);
}
@media (max-width: 1100px) {
  .cs-wrap {
    grid-template-columns: 1fr;
  }
  .toc-sidebar,
  .cs-right {
    position: static;
  }
}

/* ── FAQ Interactive Page ── */
.faq-wrap {
  display: grid;
  grid-template-columns: 230px 1fr;
  min-height: 80vh;
  gap: 0;
  border: 1px solid var(--bd);
  border-radius: 12px;
  overflow: hidden;
  margin: 30px 0 50px;
}
.fsb {
  background: var(--d);
  overflow-y: auto;
  max-height: 84vh;
  position: sticky;
  top: 80px;
}
.fsb-head {
  padding: 12px 15px;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.09em;
  color: var(--g2);
  text-transform: uppercase;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.fsb-item {
  padding: 10px 15px;
  font-size: 12.5px;
  color: rgba(255, 255, 255, 0.62);
  cursor: pointer;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  transition: 0.15s;
  line-height: 1.38;
}
.fsb-item:hover {
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.85);
}
.fsb-item.active {
  background: rgba(193, 127, 36, 0.18);
  color: var(--g2);
  font-weight: 600;
  border-left: 3px solid var(--g);
}
.fpanel {
  padding: 26px 30px;
  overflow-y: auto;
  max-height: 84vh;
}
.fpanel-head {
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 2px solid var(--bd);
}
.fpanel-head h2 {
  font-family: var(--fh);
  font-size: 22px;
  font-weight: 600;
  color: var(--d);
  margin-bottom: 6px;
}
.fpanel-head p {
  font-size: 13px;
  color: var(--mt);
  margin-bottom: 10px;
}
.fq-list .fq {
  border: 1px solid var(--bd);
  border-radius: 7px;
  margin-bottom: 7px;
  overflow: hidden;
}
.fq-list .fqq {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 11px 15px;
  cursor: pointer;
  background: var(--wh);
  font-size: 13.5px;
  font-weight: 600;
  color: var(--d);
  gap: 10px;
  transition: 0.15s;
}
.fq-list .fqq:hover {
  background: var(--pp);
}
.fq-list .fqarrow {
  font-size: 17px;
  color: var(--g);
  flex-shrink: 0;
  transition: 0.25s;
}
.fq-list .fqa {
  display: none;
  padding: 11px 15px;
  background: var(--pp);
  font-size: 13.5px;
  color: var(--mt);
  line-height: 1.75;
}
.fq-list .fqa.open {
  display: block;
}
.fq-list .fqarrow.open {
  transform: rotate(45deg);
}
@media (max-width: 768px) {
  .faq-wrap {
    grid-template-columns: 1fr;
  }
  .fsb {
    position: static;
    max-height: none;
    display: flex;
    flex-wrap: wrap;
  }
  .fsb-item {
    flex: 0 0 50%;
  }
  .fpanel {
    max-height: none;
  }
}


/*ankit
.single-blog-w{
max-width:100% !important;
width:100% !important;
}*/

/*author css start */

.author-box{
    background:#fff;
    border:1px solid #dcdcdc;
    padding:15px;
    width:100%;
    max-width:320px;
    border-radius:10px;
    font-family:Arial, sans-serif;
}

.author-top{
    display:flex;
    align-items:center;
    gap:14px;
    margin-bottom:15px;
}

.author-top img{
    width:80px;
    height:80px;
    object-fit:cover;
	border-radius: 4px;
    
}

.author-info h4{
    margin:0;
    font-size:18px;
    font-weight:700;
    color:#0c2b57;
    line-height:1.3;
}

.author-info a{
    display:inline-block;
   
    color:#d18a16;
    font-size:13px;
    font-weight:700;
    text-decoration:none;
}

.author-text{
    font-size:13px;
    line-height:1.7;
    color:#171111;
    margin-bottom:16px;
    text-align:justify;
   font-family: var(--fb);
}

.linkedin-btn{
   display: flex;
  align-items: center;
  justify-content: center;
  width: 72%;
  height: 36px;
  border: 2px solid #0a66c2;
 margin:0 auto;
  color: #0a66c2;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  transition: .3s;
  background: #fff;
  border-radius: 5px;
}

.linkedin-btn:hover{
    background:#0a66c2;
    color:#fff;
}

/*author css end */


.content-width{
max-width:100%;
width:100%
}


/*index blog image css start*/
.bcard{
    overflow:hidden;
    border-radius:18px;
    background:#fff;
    border:1px solid #e7dccb;
}

.bcimg{
    width:100%;
    height:210px;
    overflow:hidden;
    position:relative;
}

.bcimg img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
    transition:0.4s ease;
}

.bcard:hover .bcimg img{
    transform:scale(1.05);
}

/*index blog image css end*/



.ankit-class{
    display:inline-flex;
    align-items:center;
    gap:10px;

    margin-top:18px;

  padding: 3px 11px;

    background:#f8f3ea;
    color:#b7791f;

    border:1px solid #eadbc2;
    border-radius:50px;

    font-size:13px;
    font-weight:700;
    letter-spacing:0.3px;

    transition:all 0.35s ease;

    width:max-content;
}

.ankit-class span{
    transition:0.35s ease;
    font-size:16px;
}

.bcard:hover .ankit-class{
    background:#b7791f;
    color:#fff;
    border-color:#b7791f;

    box-shadow:0 8px 20px rgba(183,121,31,0.22);
}

.bcard:hover .ankit-class span{
    transform:translateX(5px);
}


.leg365-reason-icon,.leg365-service-icon,.leg365-reason-icon:before,.leg365-service-icon:before{
background:transparent !important;
color:var(--g) !important;
border:none !important;
box-shadow:none !important;
outline:none !important;
width:24px !important;
height:24px !important;
min-width:24px !important;
font-size:16px !important;
line-height:1 !important;
text-align:center !important;
display:inline-block !important;
vertical-align:middle !important;
}
.s.bgp .leg365-reason-icon,.sg .scic .leg365-service-icon{
background:transparent !important;
color:var(--g) !important
}
.sg .scic{
background:transparent !important;
border:none !important;
box-shadow:none !important
}