/* ==========================================================================
   WEWIN Tax Consultancy — shared stylesheet
   Loaded once from the ASP.NET MasterPage. Do not duplicate per child page.
   Brand tokens sampled directly from the supplied logo artwork.
   ========================================================================== */

:root {
  /* --- Brand (sampled from logo) --- */
  --navy:        #1E4377;
  --navy-deep:   #12294A;
  --navy-ink:    #0C1B33;
  --blue:        #3A79BC;
  --green:       #99D034;
  --green-deep:  #6FA118;

  /* --- Surface & text --- */
  --paper:       #F4F7FB;
  --paper-deep:  #E9EFF7;
  --white:       #FFFFFF;
  --ink:         #16202E;
  --ink-soft:    #4A5A70;
  --ink-faint:   #7C8CA3;
  --line:        #DCE4EF;
  --line-soft:   #EAF0F7;

  /* --- Type --- */
  --font-display: "Archivo", system-ui, sans-serif;
  --font-body:    "Source Sans 3", system-ui, sans-serif;
  --font-data:    "IBM Plex Mono", ui-monospace, monospace;

  /* --- Rhythm --- */
  --section-y:   clamp(3.5rem, 7vw, 6.5rem);
  --radius:      6px;
  --radius-lg:   10px;
  --shadow-sm:   0 1px 2px rgba(18, 41, 74, .06);
  --shadow:      0 4px 24px rgba(18, 41, 74, .08);
  --shadow-lg:   0 18px 50px rgba(18, 41, 74, .14);
}

/* ==========================================================================
   Base
   ========================================================================== */

html { scroll-behavior: smooth; scroll-padding-top: 92px; }

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--white);
  font-size: 1.0625rem;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6, .display-face {
  font-family: var(--font-display);
  color: var(--navy-deep);
  font-weight: 800;
  letter-spacing: -0.022em;
  line-height: 1.12;
}

h1 { font-size: clamp(2.1rem, 4.6vw, 3.4rem); }
h2 { font-size: clamp(1.6rem, 3.2vw, 2.35rem); }
h3 { font-size: clamp(1.15rem, 1.8vw, 1.4rem); letter-spacing: -0.012em; }
h4 { font-size: 1.075rem; font-weight: 700; letter-spacing: -0.008em; }

p  { color: var(--ink-soft); }
a  { color: var(--navy); text-decoration-thickness: 1px; text-underline-offset: 3px; }
a:hover { color: var(--blue); }

:focus-visible {
  outline: 3px solid var(--blue);
  outline-offset: 2px;
  border-radius: 3px;
}

.skip-link {
  position: absolute; left: -999px; top: 0; z-index: 2000;
  background: var(--navy); color: #fff; padding: .75rem 1.25rem;
  font-weight: 700; border-radius: 0 0 var(--radius) 0;
}
.skip-link:focus { left: 0; color: #fff; }

/* ==========================================================================
   Utilities
   ========================================================================== */

.section { padding-block: var(--section-y); }
.section-paper { background: var(--paper); }
.section-navy  { background: var(--navy-deep); }
.section-navy h2, .section-navy h3, .section-navy h4 { color: #fff; }
.section-navy p { color: rgba(255,255,255,.74); }

.container-tight { max-width: 1140px; }

.eyebrow {
  font-family: var(--font-data);
  font-size: .7rem;
  font-weight: 500;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--green-deep);
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  margin-bottom: 1rem;
}
.eyebrow::before {
  content: "";
  width: 22px; height: 2px;
  background: var(--green);
  display: inline-block;
}
.eyebrow-light { color: var(--green); }

.lead-text {
  font-size: 1.15rem;
  color: var(--ink-soft);
  max-width: 62ch;
}

/* Answer-first block — the direct, extractable answer for answer engines.
   Keep these to 1–3 sentences and phrase them as a complete standalone answer. */
.answer-first {
  border-left: 3px solid var(--green);
  padding: .25rem 0 .25rem 1.15rem;
  font-size: 1.1rem;
  color: var(--navy-deep);
  font-weight: 500;
  max-width: 68ch;
}

.data-label {
  font-family: var(--font-data);
  font-size: .7rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--ink-faint);
}

/* ==========================================================================
   Buttons
   ========================================================================== */

.btn {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -0.005em;
  border-radius: var(--radius);
  padding: .72rem 1.5rem;
  transition: transform .15s ease, background-color .15s ease, box-shadow .15s ease;
}
.btn:active { transform: translateY(1px); }

.btn-brand {
  background: var(--navy);
  color: #fff;
  border: 1px solid var(--navy);
}
.btn-brand:hover { background: var(--navy-deep); border-color: var(--navy-deep); color: #fff; }

.btn-accent {
  background: var(--green);
  color: var(--navy-ink);
  border: 1px solid var(--green);
}
.btn-accent:hover { background: #8AC22B; border-color: #8AC22B; color: var(--navy-ink); }

.btn-outline-brand {
  background: transparent;
  color: var(--navy);
  border: 1px solid var(--line);
}
.btn-outline-brand:hover { border-color: var(--navy); background: var(--white); color: var(--navy); }

.btn-ghost-light {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255,255,255,.35);
}
.btn-ghost-light:hover { background: rgba(255,255,255,.1); color: #fff; border-color: rgba(255,255,255,.6); }

/* ==========================================================================
   Header
   ========================================================================== */

.topbar {
  background: var(--navy-deep);
  color: rgba(255,255,255,.8);
  font-family: var(--font-data);
  font-size: .74rem;
  letter-spacing: .02em;
  padding: .45rem 0;
}
.topbar a { color: rgba(255,255,255,.85); text-decoration: none; }
.topbar a:hover { color: var(--green); }
.topbar .sep { color: rgba(255,255,255,.25); margin: 0 .65rem; }

.site-header {
  background: rgba(255,255,255,.96);
  backdrop-filter: saturate(180%) blur(8px);
  border-bottom: 1px solid var(--line-soft);
  transition: box-shadow .2s ease;
}
.site-header.is-stuck { box-shadow: var(--shadow-sm); }

/*.navbar-brand img { height: 46px; width: 70px; /*display: block;*/ }*/
.navbar {
    min-height: 50px;
	padding:0;
}

.navbar-brand {
    padding: 0;
}

.navbar-brand img {
    height: 60px;
    width: auto;
	padding:0;
}

.site-nav .nav-link {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: .93rem;
  color: var(--navy-deep);
  /*padding: .5rem .95rem;*/
  position: relative;
  letter-spacing: -0.005em;
}
.site-nav .nav-link::after {
  content: "";
  position: absolute;
  left: .95rem; right: .95rem; bottom: .18rem;
  height: 2px;
  background: var(--green);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .18s ease;
}
.site-nav .nav-link:hover::after,
.site-nav .nav-link.active::after { transform: scaleX(1); }
.site-nav .nav-link.active { color: var(--navy); }

.navbar-toggler { border-color: var(--line); padding: .35rem .55rem; }
.navbar-toggler:focus { box-shadow: none; }

/* ==========================================================================
   Hero — the thesis: what a compliance calendar actually looks like
   ========================================================================== */

.hero {
  background:
    radial-gradient(1100px 460px at 88% -10%, rgba(58,121,188,.16), transparent 60%),
    linear-gradient(180deg, var(--navy-ink) 0%, var(--navy-deep) 100%);
  color: #fff;
  padding-block: clamp(3rem, 6vw, 5.25rem);
  position: relative;
  overflow: hidden;
}
/* Faint ledger ruling — the paper this trade runs on. */
.hero::after {
  content: "";
  position: absolute; inset: 0;
  background-image: repeating-linear-gradient(
    180deg, rgba(255,255,255,.045) 0 1px, transparent 1px 34px
  );
  pointer-events: none;
}
.hero > .container { position: relative; z-index: 2; }
.hero h1 { color: #fff; }
.hero h1 .accent { color: var(--green); }
.hero p { color: rgba(255,255,255,.76); }

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  padding-top: 1.75rem;
  margin-top: 1.75rem;
  border-top: 1px solid rgba(255,255,255,.14);
}
.hero-trust-item {
  font-family: var(--font-data);
  font-size: .74rem;
  letter-spacing: .05em;
  text-transform: uppercase;
  color: rgba(255,255,255,.62);
  display: flex;
  align-items: center;
  gap: .5rem;
}
.hero-trust-item svg { color: var(--green); flex: none; }

/* ==========================================================================
   SIGNATURE ELEMENT — Statutory due-date panel
   The one memorable thing on this site. Everything around it stays quiet.
   ========================================================================== */

.duedate-panel {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}
.duedate-head {
  background: var(--navy);
  padding: .85rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.duedate-head .title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: .95rem;
  color: #fff;
  letter-spacing: -0.01em;
}
.duedate-head .month {
  font-family: var(--font-data);
  font-size: .72rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--green);
}

.duedate-list { list-style: none; margin: 0; padding: 0; }
.duedate-row {
  display: grid;
  grid-template-columns: 58px 1fr auto;
  align-items: center;
  gap: .9rem;
  padding: .72rem 1.25rem;
  border-bottom: 1px solid var(--line-soft);
}
.duedate-row:last-child { border-bottom: 0; }

.duedate-day {
  font-family: var(--font-data);
  font-weight: 600;
  font-size: 1.28rem;
  color: var(--navy);
  text-align: center;
  line-height: 1;
  padding: .3rem 0;
  border-radius: 4px;
  background: var(--paper);
}
.duedate-day .suffix { font-size: .6rem; vertical-align: super; color: var(--ink-faint); }

.duedate-form {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: .92rem;
  color: var(--navy-deep);
  display: block;
  line-height: 1.3;
}
.duedate-desc {
  font-size: .78rem;
  color: var(--ink-faint);
  display: block;
  line-height: 1.35;
}

.duedate-tag {
  font-family: var(--font-data);
  font-size: .62rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: .18rem .45rem;
  border-radius: 3px;
  background: var(--paper-deep);
  color: var(--navy);
  white-space: nowrap;
}
.duedate-tag.is-gst  { background: rgba(58,121,188,.12);  color: var(--blue); }
.duedate-tag.is-tds  { background: rgba(30,67,119,.1);    color: var(--navy); }
.duedate-tag.is-pfesi{ background: rgba(153,208,52,.2);   color: var(--green-deep); }

.duedate-foot {
  background: var(--paper);
  border-top: 1px solid var(--line);
  padding: .7rem 1.25rem;
  font-size: .73rem;
  color: var(--ink-faint);
  line-height: 1.45;
}

/* ==========================================================================
   Cards
   ========================================================================== */

.card-service {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 1.6rem;
  height: 100%;
  transition: border-color .18s ease, box-shadow .18s ease, transform .18s ease;
  display: flex;
  flex-direction: column;
}
.card-service:hover {
  border-color: var(--blue);
  box-shadow: var(--shadow);
  transform: translateY(-3px);
}
.card-service .icon-wrap {
  width: 42px; height: 42px;
  border-radius: 8px;
  background: var(--paper-deep);
  color: var(--navy);
  display: grid;
  place-items: center;
  margin-bottom: 1.05rem;
}
.card-service:hover .icon-wrap { background: var(--navy); color: var(--green); }
.card-service h3 { margin-bottom: .5rem; }
.card-service p { font-size: .93rem; margin-bottom: 1rem; }

.card-link {
  margin-top: auto;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: .85rem;
  color: var(--navy);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: .35rem;
}
.card-link:hover { gap: .6rem; color: var(--blue); }

.chip-list { display: flex; flex-wrap: wrap; gap: .4rem; margin: 0; padding: 0; list-style: none; }
.chip {
  font-size: .8rem;
  padding: .3rem .7rem;
  border-radius: 100px;
  background: var(--white);
  border: 1px solid var(--line);
  color: var(--ink-soft);
}

/* ==========================================================================
   Services page — category sections + accordion
   ========================================================================== */

.svc-sidebar {
  position: sticky;
  top: 100px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 1.1rem;
  background: var(--white);
}
.svc-sidebar .data-label { display: block; margin-bottom: .75rem; }
.svc-sidebar a {
  display: block;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: .88rem;
  color: var(--ink-soft);
  text-decoration: none;
  padding: .42rem .6rem;
  border-radius: 4px;
  border-left: 2px solid transparent;
}
.svc-sidebar a:hover { background: var(--paper); color: var(--navy); }
.svc-sidebar a.active {
  color: var(--navy);
  border-left-color: var(--green);
  background: var(--paper);
}

.svc-block { padding-block: 2.75rem; border-top: 1px solid var(--line-soft); }
.svc-block:first-of-type { border-top: 0; padding-top: 0; }

.accordion-brand .accordion-item {
  border: 1px solid var(--line);
  border-radius: var(--radius) !important;
  margin-bottom: .6rem;
  overflow: hidden;
}
.accordion-brand .accordion-button {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: .98rem;
  color: var(--navy-deep);
  background: var(--white);
  padding: .95rem 1.1rem;
  letter-spacing: -0.008em;
}
.accordion-brand .accordion-button:not(.collapsed) {
  background: var(--paper);
  color: var(--navy);
  box-shadow: none;
}
.accordion-brand .accordion-button:focus { box-shadow: none; border-color: var(--blue); }
.accordion-brand .accordion-button::after {
  width: 1rem; height: 1rem; background-size: 1rem;
}
.accordion-brand .accordion-body { padding: 0 1.1rem 1.2rem; font-size: .95rem; }
.accordion-brand .accordion-body p { margin-bottom: .75rem; }

.benefit-list { list-style: none; padding: 0; margin: 0; display: grid; gap: .35rem; }
.benefit-list li {
  position: relative;
  padding-left: 1.4rem;
  font-size: .9rem;
  color: var(--ink-soft);
}
.benefit-list li::before {
  content: "";
  position: absolute; left: 0; top: .55em;
  width: 8px; height: 8px;
  border-radius: 2px;
  background: var(--green);
}

/* ==========================================================================
   Sector strip
   ========================================================================== */

.sector-item {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1rem 1.1rem;
  background: var(--white);
  height: 100%;
}
.sector-item .name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: .95rem;
  color: var(--navy-deep);
  display: block;
  margin-bottom: .15rem;
}
.sector-item .note { font-size: .82rem; color: var(--ink-faint); line-height: 1.45; }

/* ==========================================================================
   Testimonials
   ========================================================================== */

.quote-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.quote-card .mark {
  font-family: var(--font-display);
  font-size: 2.75rem;
  line-height: .6;
  color: var(--green);
  margin-bottom: .9rem;
}
.quote-card blockquote {
  font-size: 1rem;
  color: var(--ink);
  margin: 0 0 1.25rem;
  line-height: 1.6;
}
.quote-card figcaption {
  margin-top: auto;
  padding-top: 1rem;
  border-top: 1px solid var(--line-soft);
}
.quote-card .who {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: .9rem;
  color: var(--navy-deep);
  display: block;
}
.quote-card .role { font-size: .8rem; color: var(--ink-faint); }

/*.is-placeholder {
  border-style: dashed;
  border-color: var(--blue);
  background: repeating-linear-gradient(
    -45deg, rgba(58,121,188,.03) 0 12px, transparent 12px 24px
  );
}*/
.placeholder-flag {
  font-family: var(--font-data);
  font-size: .62rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--blue);
  background: rgba(58,121,188,.1);
  padding: .2rem .5rem;
  border-radius: 3px;
  display: inline-block;
  margin-bottom: .9rem;
}

/* ==========================================================================
   Contact
   ========================================================================== */

.office-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 1.6rem;
  height: 100%;
  border-top: 3px solid var(--navy);
}
.office-card.is-branch { border-top-color: var(--green); }
.office-card .badge-office {
  font-family: var(--font-data);
  font-size: .64rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--navy);
  background: var(--paper-deep);
  padding: .22rem .55rem;
  border-radius: 3px;
  margin-bottom: .85rem;
  display: inline-block;
}
.office-card address {
  font-style: normal;
  font-size: .95rem;
  color: var(--ink-soft);
  margin-bottom: 1.1rem;
  line-height: 1.6;
}
.contact-line {
  display: flex;
  align-items: flex-start;
  gap: .65rem;
  font-size: .92rem;
  padding: .3rem 0;
}
.contact-line svg { color: var(--blue); flex: none; margin-top: .28rem; }
.contact-line a { color: var(--navy-deep); text-decoration: none; font-weight: 600; }
.contact-line a:hover { color: var(--blue); text-decoration: underline; }

.form-control, .form-select {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: .68rem .85rem;
  font-size: .95rem;
}
.form-control:focus, .form-select:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(58,121,188,.14);
}
.form-label {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: .82rem;
  color: var(--navy-deep);
  margin-bottom: .3rem;
}
.form-label .req { color: #C0392B; }

.map-frame {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--paper);
  min-height: 320px;
}
.map-frame iframe { display: block; width: 100%; height: 100%; min-height: 320px; border: 0; }

/* ==========================================================================
   FAQ
   ========================================================================== */

.faq-item {
  border-bottom: 1px solid var(--line);
  padding: 1.15rem 0;
}
.faq-item:first-child { border-top: 1px solid var(--line); }
.faq-item h3 { font-size: 1.02rem; margin-bottom: .45rem; }
.faq-item p { font-size: .95rem; margin: 0; }

/* ==========================================================================
   CTA band
   ========================================================================== */

.cta-band {
  background: linear-gradient(100deg, var(--navy-ink), var(--navy) 90%);
  border-radius: var(--radius-lg);
  padding: clamp(1.75rem, 4vw, 2.75rem);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: "";
  position: absolute;
  right: -60px; top: -60px;
  width: 240px; height: 240px;
  border-radius: 50%;
  background: rgba(153,208,52,.14);
}
.cta-band h2 { color: #fff; position: relative; }
.cta-band p  { color: rgba(255,255,255,.75); position: relative; margin-bottom: 0; }
.cta-band .actions { position: relative; }

/* ==========================================================================
   Page header (interior pages)
   ========================================================================== */

.page-head {
  background: var(--paper);
  border-bottom: 1px solid var(--line);
  padding-block: clamp(2.25rem, 4.5vw, 3.5rem);
}
.breadcrumb {
  font-family: var(--font-data);
  font-size: .72rem;
  letter-spacing: .04em;
  margin-bottom: .85rem;
}
.breadcrumb a { color: var(--ink-faint); text-decoration: none; }
.breadcrumb a:hover { color: var(--navy); }
.breadcrumb-item + .breadcrumb-item::before { color: var(--line); }
.breadcrumb-item.active { color: var(--navy); }

/* ==========================================================================
   Footer
   ========================================================================== */

.site-footer {
  background: var(--navy-ink);
  color: rgba(255,255,255,.62);
  padding-top: 3.25rem;
  font-size: .92rem;
}
.site-footer h4 {
  font-size: .78rem;
  font-family: var(--font-data);
  font-weight: 500;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 1.05rem;
}
.site-footer .footer-logo { height: 82px; width: auto; margin-bottom: 1.1rem; }
.site-footer a { color: rgba(255,255,255,.62); text-decoration: none; }
.site-footer a:hover { color: var(--green); }
.footer-links { list-style: none; padding: 0; margin: 0; display: grid; gap: .5rem; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  margin-top: 2.75rem;
  padding-block: 1.25rem;
  font-family: var(--font-data);
  font-size: .72rem;
  color: rgba(255,255,255,.42);
}

/* Floating call button — mobile only. Most enquiries here start as a phone call. */
.call-fab {
  position: fixed;
  right: 1rem; bottom: 1rem;
  z-index: 1030;
  background: var(--green);
  color: var(--navy-ink);
  border-radius: 100px;
  padding: .8rem 1.25rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: .9rem;
  text-decoration: none;
  box-shadow: var(--shadow-lg);
  display: none;
  align-items: center;
  gap: .5rem;
}
.call-fab:hover { color: var(--navy-ink); background: #8AC22B; }
@media (max-width: 991.98px) { .call-fab { display: inline-flex; } }

/* ==========================================================================
   Motion
   ========================================================================== */

.reveal {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity .5s ease, transform .5s ease;
}
.reveal.is-visible { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .001ms !important;
    transition-duration: .001ms !important;
  }
  .reveal { opacity: 1; transform: none; }
}

/* ==========================================================================
   Responsive
   ========================================================================== */

@media (max-width: 991.98px) {
  .site-nav { padding-block: .75rem; }
  .site-nav .nav-link { padding: .6rem .25rem; }
  .site-nav .nav-link::after { display: none; }
  .svc-sidebar { position: static; margin-bottom: 1.75rem; }
  .hero { padding-block: 2.75rem; }
}

@media (max-width: 575.98px) {
  body { font-size: 1rem; }
  .duedate-row { grid-template-columns: 48px 1fr; padding: .65rem .9rem; }
  .duedate-tag { grid-column: 2; justify-self: start; margin-top: .25rem; }
  .navbar-brand img { height: 38px; }
  .site-footer { padding-bottom: 4.5rem; }
}

@media print {
  .site-header, .topbar, .call-fab, .site-footer, .cta-band { display: none !important; }
}
/* Services Dropdown */

.dropdown-menu {
    min-width: 280px;
    border: none;
    border-radius: 10px;
    box-shadow: 0 10px 25px rgba(0,0,0,.15);
    padding: 10px 0;
    margin-top: 8px;
}

.dropdown-item {
    padding: 12px 20px;
    font-size: 16px;
    color: #333;
    transition: all .3s ease;
}

.dropdown-item:hover {
    background: #f5f5f5;
    color: #b67d6b;
    padding-left: 28px;
}

/* Open on hover for desktop */
@media (min-width:992px){

    .nav-item.dropdown:hover>.dropdown-menu{
        display:block;
    }

    .nav-item.dropdown>.dropdown-toggle:active{
        pointer-events:none;
    }

}
/* Main Menu */
.site-nav li{
    position:relative;
}

/* Dropdown */
.site-nav .sub-menu{
    position:absolute;
    left:0;
    top:100%;
    width:280px;
    background:#fff;
    display:none;
    list-style:none;
    padding:10px 0;
    margin:0;
    border-radius:8px;
    box-shadow:0 10px 30px rgba(0,0,0,.15);
    z-index:9999;
}

/* Show Dropdown */
.site-nav li:hover>.sub-menu{
    display:block;
}

/* Menu Items */
.site-nav .sub-menu li{
    width:100%;
}

/* Links */
.site-nav .sub-menu li a{
    display:block;
    padding:12px 20px;
    color:#222;
    text-decoration:none;
    transition:.3s;
}

/* Hover */
.site-nav .sub-menu li:hover>a{
    background:#f5f5f5;
    color: #00008B;
    padding-left:28px;
}

/* Second Level */
.site-nav .sub-menu .sub-menu{
    left:100%;
    top:0;
}
.nav-item  a
{
	text-decoration:none;
}
.navbar-nav .nav-item > a {
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    font-weight: 600;
    color: #163B72;
    text-decoration: none;
}
/* FAQ Accordion */

.accordion-item {
    border: 1px solid #163B72;
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
}

.accordion-button {
    background-color: #163B72;
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    padding: 18px;
    box-shadow: none;
}

.accordion-button:not(.collapsed) {
    background-color: #163B72;
    color: #fff;
}

.accordion-button:focus {
    box-shadow: none;
}

.accordion-button::after {
    filter: brightness(0) invert(1);
}

.accordion-body {
    background: #fff;
    color: #555;
    font-size: 16px;
    line-height: 1.8;
    padding: 20px;
}
.navbar-nav {
    display: flex;
    gap: 10px;
}
.whatsapp-float {
    position: fixed;
    width: 65px;
    height: 65px;
    bottom: 20px;
    right: 20px;
    background: #9BE22D;   /* light green */
    color: #123C8C;        /* dark blue */
    border-radius: 50%;
    font-size: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(0,0,0,0.25);
    z-index: 9999;
}

.whatsapp-float:hover {
    background: #123C8C;
    color: #9BE22D;
    transition: 0.3s;
}
.whatsapp-link:hover{
    color: #8DC63F !important;
}
/* Services Sub Menu */
.site-nav .sub-menu {
    max-height: 500px;
    overflow-y: auto;
    overflow-x: hidden;
}

/* Scrollbar */
.site-nav .sub-menu::-webkit-scrollbar {
    width: 6px;
}

.site-nav .sub-menu::-webkit-scrollbar-thumb {
    background: #9bd52b;
    border-radius: 10px;
}

.site-nav .sub-menu::-webkit-scrollbar-track {
    background: #f1f1f1;
}#companyAccordion .accordion-item {
    border: 1px solid #1d477f;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 15px;
}

#companyAccordion .accordion-button {
    background-color: #1d477f;
    color: #fff;
    font-size: 22px;
    font-weight: 600;
    padding: 22px 28px;
    box-shadow: none;
}

#companyAccordion .accordion-button:not(.collapsed) {
    background-color: #1d477f;
    color: #fff;
}

#companyAccordion .accordion-button::after {
    filter: brightness(0) invert(1);
}

#companyAccordion .accordion-body {
    padding: 25px 30px;
    font-size: 18px;
    line-height: 1.7;
    color: #555;
}

#companyAccordion .accordion-body ul {
    margin: 0;
    padding-left: 20px;
}

#companyAccordion .accordion-body li {
    margin-bottom: 8px;
}
.svc-sidebar a {
    display: block;
    padding: 10px 15px;
    color: #333;
    text-decoration: none;
    border-radius: 6px;
}

/*.svc-sidebar a:hover {
    background-color: #f1f7f3;
    color: #198754;
}*/

/*.svc-sidebar a.active {
    background-color: #198754;
    color: #fff;
    font-weight: 600;
}*/
.svc-sidebar a.active {
    background-color: #99D034;
    color: #fff;
    font-weight: 600;
}
.service-content {
    border: 1px solid #d9d9d9;
    border-radius: 6px;
    overflow: hidden;
    margin: 20px 0;
    padding: 0;
}

.service-title {
    background-color: #99D034;
    color: #fff;
    padding: 18px 30px;
    margin: 0;
}

.service-body {
    background-color: #fff;
    padding: 20px 30px;
}
