/* =========================================================
   GLOBAL COLOR SYSTEM & BASE TOKENS
   ========================================================= */

:root {
  /* Brand Gradient (Hero, accents) */
  --color-primary-a: #00F2B5;  /* Mint-teal */
  --color-primary-b: #38C6C6;  /* Aqua */
  --color-primary-c: #55AAD4;  /* Cool blue */

  /* Solid CTA / Buttons */
  --color-primary-cta: #0A005B;       /* Deep navy (existing brand) */
  --color-primary-cta-alt: #00C4B0;   /* Teal variant */
  --color-primary-cta-hover: #14008A; /* Hover state for strong CTAs */

  /* Text & Neutrals */
  --color-ink: #0A1A2F;        /* Headings */
  --color-heading: #0A1A2F;    /* Alias for headings */
  --color-text: #43464B;       /* Body text */
  --color-muted: #6B7280;      /* Subtext */
  --color-white: #FFFFFF;
  --color-border: #E2E8F0;

  /* Surfaces */
  --color-surface: #F5F7FB;         /* Light cards / bands */
  --color-surface-alt: #ECF5FF;     /* Soft blue background */
  --color-section-grey: #2E319242;  /* Subtle grey band */

  /* Links & Accents */
  --color-link: #0A005B;
  --color-link-hover: #2563EB;
  --color-accent: #FF7A00;     /* For metrics / highlights */

  /* Legacy gradient support */
  --color-legacy-teal: #27D0BF;
  --color-legacy-blue: #48A1D0;
}

/* =========================================================
   FONTS
   ========================================================= */

@font-face {
  font-family: Lexend-VariableFont;
  src: url(/wp-content/themes/abhishek/assets/fonts/Lexend/Lexend-VariableFont_wght.ttf);
}

@font-face {
  font-family: Lexend-Thin;
  src: url(/wp-content/themes/abhishek/assets/fonts/Lexend/static/Lexend-Thin.ttf);
}

@font-face {
  font-family: Lexend-Regular;
  src: url(/wp-content/themes/abhishek/assets/fonts/Lexend/static/Lexend-Regular.ttf);
}

@font-face {
  font-family: Lexend-Bold;
  src: url(/wp-content/themes/abhishek/assets/fonts/Lexend/static/Lexend-Bold.ttf);
}

@font-face {
  font-family: Lexend-Medium;
  src: url(/wp-content/themes/abhishek/assets/fonts/Lexend/static/Lexend-Medium.ttf);
}

/* =========================================================
   LAYOUT BASE
   ========================================================= */

.container-fluid {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}

.container {
  width: 100%;
  max-width: 1280px !important;
  margin: 0 auto;
}

body {
  color: var(--color-text);
  background-color: var(--color-white);
  font-family: 'Lexend-Regular', 'Lexend-VariableFont', system-ui, -apple-system,
    BlinkMacSystemFont, "Segoe UI", sans-serif;
}

h1, h2, h3, h4, h5 {
  color: var(--color-ink);
  font-weight: 500;
  font-family: Lexend-VariableFont;
}

h1 {
  font-size: 38px !important;
  font-weight: 600 !important;
  line-height: 50px !important;
  margin-bottom: 20px !important;
}

p {
  font-size: 17.6px;
  font-weight: 400;
  line-height: 24.64px;
  font-family: Lexend-VariableFont;
  color: var(--color-text);
}

.main {
  float: left;
  width: 100%;
}

/* Legacy homebanner (kept if used elsewhere) */
.homebanner h1 {
  font-size: 48px !important;
  font-weight: 500;
  line-height: 57.6px;
  font-family: Lexend-VariableFont;
}

.homebanner p {
  font-size: 17.6px;
  font-weight: 400;
  line-height: 24.64px;
  font-family: Lexend-VariableFont;
  color: #E7F6FF;
}

/* Link-style CTA */
a.customlink {
  font-size: 18px;
  font-weight: 500;
  font-family: Lexend-VariableFont;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 24px;
  border-radius: 999px;
  background-color: var(--color-primary-cta);
  color: #ffffff;
  text-decoration: none;
  box-shadow: 0 16px 32px rgba(10, 0, 91, 0.25);
  transition:
    background-color 0.18s ease,
    transform 0.18s ease,
    box-shadow 0.18s ease;
}

a.customlink svg {
  flex-shrink: 0;
}

a.customlink:hover,
a.customlink:focus-visible {
  background-color: var(--color-primary-cta-alt);
  transform: translateY(-2px);
  box-shadow: 0 20px 40px rgba(10, 0, 91, 0.3);
  color: #ffffff;
}

/* =========================================================
   TRANSPARENT + STICKY HEADER (FINAL VERSION)
   ========================================================= */

/* Base Header */
header {
  width: 100%;
  position: relative;
  z-index: 9999;
}

/* Transparent Header (initial state) */
nav.clearHeader {
  background: transparent !important;
  padding: 18px 0;
  width: 100%;
  box-shadow: none !important;
  transition: all 0.35s ease;
  position: absolute;
  top: 0;
  left: 0;
}

/* Menu link colors on transparent background */
nav.clearHeader .nav-link {
  color: #ffffff !important;
}

nav.clearHeader li.menu-btn a.nav-link {
  background-color: rgba(10,0,91,0.85);
  color: #ffffff !important;
}

/* Sticky Header (after scrolling) */
nav.darkHeader {
  background-color: #ffffff !important;
  box-shadow: 0 4px 14px rgba(0,0,0,0.12);
  padding: 8px 0;
  position: fixed;
  top: 0;
  width: 100%;
  transition: all 0.35s ease;
  z-index: 99999;
}

/* Menu text switches back to ink color */
nav.darkHeader .nav-link {
  color: #0A0A1A !important;
}

/* CTA stays white text and visible */
nav.darkHeader li.menu-btn a.nav-link {
  background-color: #0A005B !important;
  color: #ffffff !important;
}

/* Admin bar fix */
body.logged-in.admin-bar nav.darkHeader {
  top: 32px;
}

/* Logo */
a.navbar-brand img {
  max-width: 170px;
  height: auto;
  transition: transform .2s ease, filter .25s ease;
}

/* Optional: white logo on transparent, if you have that asset */
/*
nav.clearHeader .navbar-brand img {
  filter: brightness(0) invert(1);
}
*/

/* Menu links */
ul.navbar-nav li.nav-item a.nav-link {
  font-family: Lexend-VariableFont;
  font-size: 16px;
  font-weight: 500;
  padding: 14px 12px;
  margin-right: 18px;
  transition: color .25s ease;
}

ul.navbar-nav li.nav-item a.nav-link:hover {
  color: #000000 !important;
}

/* CTA button (Contact Us) */
li.menu-btn a.nav-link,
a.nav-link.cusbtn {
  background-color: #0A005B;
  color: #ffffff !important;
  padding: 12px 24px !important;
  border-radius: 8px;
  font-weight: 600;
  text-transform: uppercase;
  margin-left: 10px;
  transition: all .25s ease;
}

li.menu-btn a.nav-link:hover,
a.nav-link.cusbtn:hover {
  background-color: #14008F;
  transform: translateY(-2px);
}

/* Mobile menu button */
.navbar-toggler {
  border: none;
}

/* =========================================================
   HOME – HERO SECTION
   ========================================================= */

section.hbanner {
  background:
    radial-gradient(circle at 15% 10%, rgba(255,255,255,0.22) 0, transparent 48%),
    radial-gradient(circle at 82% 18%, rgba(0,0,0,0.18) 0, transparent 52%),
    linear-gradient(135deg, #00C4B0 0%, #28A4D0 40%, #0A4E8A 100%);
  float: left;
  width: 100%;
  position: relative;
  padding: 120px 0 110px;
  margin: 0;
  color: #fff;
  overflow: hidden;
}

section.hbanner::before {
  content: '';
  background-image: url('/wp-content/themes/abhishekbudholiya/assets/logo/logo-icon.png');
  background-size: contain;
  background-repeat: no-repeat;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.18;
  pointer-events: none;
}

@keyframes bgMove {
  0% { background-position: 20px 20px; }
  50% { background-position: 350px 350px; }
  100% { background-position: 600px 600px; }
}

.homebannercont {
  padding: 10px 0;
  max-width: 540px;
  color: #fff;
  position: relative;
  padding-right: 10%;
}

.hero-kicker {
  font-size: 0.9rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 500;
  color: #E7F6FF;
  margin-bottom: 12px;
}

.homebannercont h1 {
  font-size: 3.1rem !important;
  line-height: 1.15 !important;
  font-weight: 700 !important;
  color: #ffffff;
  margin-bottom: 18px !important;
}

#hero-desc {
  font-size: 1.05rem;
  line-height: 1.6;
  color: #E7F6FF;
  margin-bottom: 26px;
}

.hero-cta-wrap {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  margin-bottom: 14px;
}

/* base button */
a.cusbtn {
  font-family: Lexend-VariableFont;
  font-size: 16px;
  line-height: 20px;
  font-weight: 500;
  background-color: var(--color-primary-cta);
  color: #fff;
  border-radius: 6px;
  padding: 15px 25px 16px;
  margin-top: 8px;
  float: left;
  text-transform: uppercase;
  text-decoration: none;
}

/* Hero CTAs */
.cusbtn.hero-cta-primary {
  float: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 14px 28px 15px;
  letter-spacing: 0.04em;
  background-color: #FF8A3C;
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.22);
}

.cusbtn.hero-cta-primary:hover,
.cusbtn.hero-cta-primary:focus-visible {
  background-color: #FF6A00;
  color: #fff;
  box-shadow: 0 18px 36px rgba(0,0,0,0.26);
}

.hero-cta-secondary {
  background-color: rgba(255,255,255,0.08);
  color: #ffffff;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.35);
  padding: 12px 22px;
  font-size: 0.95rem;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  text-transform: none;
  transition:
    background-color 0.18s ease,
    border-color 0.18s ease,
    transform 0.18s ease;
}

.hero-cta-secondary::after {
  content: "↘";
  font-size: 0.95rem;
  margin-top: 1px;
}

.hero-cta-secondary:hover,
.hero-cta-secondary:focus-visible {
  background-color: rgba(255,255,255,0.16);
  border-color: rgba(255,255,255,0.7);
  transform: translateY(-1px);
}

.hero-subnote {
  font-size: 0.92rem;
  line-height: 1.5;
  color: rgba(231,246,255,0.95);
  margin-top: 25px;
}

.homebannerimg {
  padding-top: 50px;
  text-align: center;
  position: relative;
  margin: 0 auto;
  width: 100%;
}

.hbanner img {
  max-width: 100%;
  margin: 40px auto 0;
  position: relative;
}

a.cusbtn:hover,
a.nav-link.cusbtn:hover {
  background-color: var(--color-primary-cta-alt);
  color: #fff !important;
}

/* =========================================================
   HOME – TRUST STRIP / QUICK PROOF (homesec1)
   ========================================================= */

section.homesec1 {
  float: left;
  width: 100%;
  padding: 32px 0 40px;
  background: #ffffff;
  border-bottom: 1px solid rgba(148,163,184,0.25);
}

.homesec1box {
  background: #ffffff;
  border-radius: 14px;
  padding: 14px 18px;
  border: 1px solid rgba(148,163,184,0.4);
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.06);
  display: flex;
  align-items: center;
  gap: 12px;
  height: 100%;
}

.homesec1box img {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
}

.homesec1box p {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.45;
  color: var(--color-text);
}

/* =========================================================
   HOME – SECTION 2
   ========================================================= */

section.homesec2 {
  float: left;
  width: 100%;
  margin: 60px auto;
}

section.homesec2 img {
  width: 100%;
}

.homesec2-inner {
  margin-left: 5%;
}

/* =========================================================
   HOME – DESIGN THINKING SECTION
   ========================================================= */

.design-thinking-section {
  float: left;
  width: 100%;
  padding: 80px 0 90px;
  background:
    radial-gradient(circle at top left,
      rgba(0, 196, 176, 0.14) 0,
      rgba(236, 245, 255, 0.95) 40%,
      #ffffff 80%);
}

.dt-header {
  max-width: 860px;
  margin: 0 auto 40px;
  text-align: left;
}

.dt-header h2 {
  font-size: 2rem;
  line-height: 1.3;
  margin-bottom: 10px;
}

.dt-header h2 span {
  color: var(--color-primary-cta);
  text-transform: uppercase;
}

.dt-header p {
  font-size: 0.98rem;
  line-height: 1.6;
  color: var(--color-muted);
}

.dt-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.25fr);
  gap: 32px;
  align-items: flex-start;
}

.dt-intro h3 {
  font-size: 1.1rem;
  margin-bottom: 10px;
}

.dt-intro p {
  font-size: 0.96rem;
  line-height: 1.6;
  color: var(--color-text);
  margin-bottom: 10px;
}

.dt-intro-note {
  font-size: 0.9rem;
  color: var(--color-muted);
}

.dt-card-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.dt-card {
  position: relative;
  background: #ffffff;
  border-radius: 18px;
  padding: 22px 22px 18px;
  border: 1px solid rgba(148, 163, 184, 0.35);
  box-shadow:
    0 12px 30px rgba(15, 23, 42, 0.06),
    0 0 0 1px rgba(255, 255, 255, 0.8);
  overflow: hidden;
}

.dt-card::after {
  content: "";
  position: absolute;
  inset: 45% -30% -35% 40%;
  background:
    radial-gradient(circle at top right,
      rgba(0, 196, 176, 0.15) 0,
      transparent 55%),
    radial-gradient(circle at bottom left,
      rgba(85, 170, 212, 0.18) 0,
      transparent 60%);
  opacity: 0.8;
  pointer-events: none;
}

.dt-card h4 {
  position: relative;
  z-index: 1;
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--color-ink);
}

.dt-card p {
  position: relative;
  z-index: 1;
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--color-text);
}

.dt-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.12);
  border-color: rgba(0, 196, 176, 0.55);
  transition: 0.2s ease;
}

@media (max-width: 991px) {
  .design-thinking-section {
    padding: 70px 0 75px;
  }

  .dt-layout {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .dt-card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 575px) {
  .dt-header {
    text-align: left;
  }

  .dt-card-grid {
    grid-template-columns: 1fr;
  }

  .dt-card {
    padding: 18px 18px 16px;
  }

  .dt-header h2 {
    font-size: 1.6rem;
  }
}

/* =========================================================
   HOME – CONTACT / LEAD SECTION (FREE AUDIT)
   ========================================================= */

section.homesec3 {
  float: left;
  width: 100%;
  padding: 100px 0 90px;
  background: linear-gradient(var(--color-surface-alt), #ffffff);
}

.homesec3-inner {
  margin-top: 7%;
}

.audit-points {
  list-style: none;
  padding: 0;
  margin: 18px 0 0;
}

.audit-points li {
  position: relative;
  padding-left: 20px;
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--color-text);
  margin-bottom: 6px;
}

.audit-points li::before {
  content: "●";
  position: absolute;
  left: 0;
  top: 3px;
  font-size: 10px;
  color: var(--color-primary-cta-alt);
}

.cont-form label {
  width: 48%;
  margin: 0 1% 15px;
}

.cont-form {
  margin: 0 6%;
}

.cont-form input,
.cont-form textarea {
  width: 100%;
  height: 60px;
  border: 0;
  border-radius: 5px;
  color: var(--color-text);
  padding: 14px 22px;
  margin-bottom: 4px;
  font-size: 16px;
  -webkit-appearance: none;
  background-color: #fff;
}

.cont-form textarea {
  height: 150px;
  margin: auto 1%;
  width: 98%;
}

.cont-form input.wpcf7-submit {
  color: #fff;
  background-color: var(--color-primary-cta);
  font-family: Lexend-VariableFont;
  font-size: 17px;
  line-height: 23px;
  margin: 15px 1%;
  width: 40%;
}

/* =========================================================
   HOME – SERVICES GRID
   ========================================================= */

section.homesec4 {
  padding: 0px 0 80px;
  background: #FFFFFF;
  float: left;
  width: 100%;
}

.homesec4-inner1 {
  max-width: 720px;
  margin: 0 auto 42px;
  text-align: center;
}

.homesec4-inner1 h2 {
  font-size: 2rem;
  line-height: 1.3;
  font-weight: 600;
  color: var(--color-ink);
  margin-bottom: 10px;
}

.homesec4-inner1 p {
  font-size: 0.98rem;
  line-height: 1.55;
  color: var(--color-muted);
  margin: 0;
}

.homesec4-inner {
  position: relative;
  background: var(--color-white);
  border-radius: 16px;
  padding: 26px 24px 22px;
  border: 1px solid rgba(148, 163, 184, 0.35);
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.06);
  cursor: pointer;
  overflow: hidden;
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.homesec4-inner::after {
  content: "";
  position: absolute;
  inset: 55% -30% -35% 40%;
  background:
    radial-gradient(circle at top right,
      rgba(0, 196, 176, 0.15) 0,
      transparent 55%),
    radial-gradient(circle at bottom left,
      rgba(85, 170, 212, 0.18) 0,
      transparent 60%);
  opacity: 0.9;
  pointer-events: none;
}

.homesec4-inner:hover {
  transform: translateY(-5px);
  border-color: rgba(0, 196, 176, 0.6);
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.14);
}

.homesec4-inner:focus,
.homesec4-inner:focus-visible {
  outline: 2px solid var(--color-primary-cta-alt);
  outline-offset: 3px;
}

.img-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: linear-gradient(
    135deg,
    var(--color-primary-a),
    var(--color-primary-c)
  );
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}

.img-icon img {
  width: 60%;
  height: auto;
  display: block;
}

.homesec4-inner h3 {
  font-size: 1.1rem;
  line-height: 1.4;
  font-weight: 600;
  color: var(--color-ink);
  margin-bottom: 8px;
  position: relative;
  z-index: 1;
}

.homesec4-inner p {
  font-size: 0.92rem;
  line-height: 1.6;
  color: var(--color-text);
  margin-bottom: 10px;
  position: relative;
  z-index: 1;
}

.service-cta {
  display: inline-block;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--color-primary-cta);
  position: relative;
  z-index: 1;
}

.service-cta::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0;
  height: 1px;
  background: var(--color-primary-cta-alt);
  transition: width 0.22s ease;
}

.homesec4-inner:hover .service-cta {
  color: var(--color-primary-cta-alt);
}

.homesec4-inner:hover .service-cta::after {
  width: 100%;
}

@media (max-width: 991px) {
  section.homesec4 {
    padding: 70px 0;
  }
}

@media (max-width: 575px) {
  section.homesec4 {
    padding: 60px 0;
  }

  .homesec4-inner {
    padding: 22px 18px 20px;
  }

  .homesec4-inner1 h2 {
    font-size: 1.7rem;
  }
}

/* =========================================================
   WHO I HELP GROW FASTER
   ========================================================= */

.section-who-help {
  padding: 80px 0 70px;
  background: var(--color-surface);
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  text-align: center;
  float: left;
  width: 100%;
}

.section-who-help h2 {
  font-size: 2rem;
  line-height: 1.3;
  font-weight: 600;
  color: var(--color-ink);
  margin-bottom: 10px;
  text-align: center;
}

.section-who-help .section-intro {
  max-width: 780px;
  margin: 0 auto 45px;
  text-align: center;
  font-size: 0.96rem;
  line-height: 1.55;
  color: var(--color-muted);
}

.industry-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  text-align: left;
}

.industry-card {
  background: #FFFFFF;
  border-radius: 16px;
  padding: 26px 24px 22px;
  border: 1px solid rgba(148, 163, 184, 0.38);
  box-shadow: 0 10px 26px rgba(15, 23, 42, 0.06);
  transition: all 0.22s ease;
  overflow: hidden;
  position: relative;
}

.industry-card::after {
  content: "";
  position: absolute;
  inset: 55% -15% -20% 45%;
  background:
    radial-gradient(circle at top right,
      rgba(0, 196, 176, 0.18) 0,
      transparent 60%);
  opacity: 0.9;
  pointer-events: none;
}

.industry-card:hover {
  border-color: rgba(0, 196, 176, 0.7);
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.12);
}

.industry-card h3 {
  font-size: 1.15rem;
  line-height: 1.4;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--color-ink);
  position: relative;
  z-index: 2;
}

.industry-card p {
  font-size: 0.94rem;
  line-height: 1.55;
  color: var(--color-text);
  margin-bottom: 12px;
  position: relative;
  z-index: 2;
}

.industry-card a {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--color-link);
  text-decoration: none;
  position: relative;
  z-index: 2;
}

.industry-card a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0;
  height: 1px;
  background: var(--color-link-hover);
  transition: width 0.22s ease;
}

.industry-card:hover a {
  color: var(--color-link-hover);
}

.industry-card:hover a::after {
  width: 100%;
}

@media (max-width: 991px) {
  .industry-grid {
    grid-template-columns: repeat(2,1fr);
    gap: 22px;
  }

  .section-who-help {
    padding: 70px 0 60px;
  }
}

@media (max-width: 575px) {
  .industry-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .section-who-help h2 {
    font-size: 1.72rem;
  }

  .section-who-help {
    padding: 60px 0 55px;
  }
}

/* =========================================================
   RECENT WINS FROM MY CLIENTS
   ========================================================= */

.section-recent-wins {
  padding: 80px 0 90px;
  background: #FFFFFF;
  float: left;
  width: 100%;
}

.section-recent-wins h2 {
  text-align: center;
  margin-bottom: 8px;
  font-size: 2rem;
  font-weight: 600;
  color: var(--color-ink);
}

.section-recent-wins .section-sub {
  max-width: 760px;
  margin: 0 auto 50px;
  text-align: center;
  color: var(--color-muted);
  font-size: 0.96rem;
  line-height: 1.55;
}

.wins-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.win-card {
  position: relative;
  background: #FFFFFF;
  border-radius: 16px;
  padding: 26px 24px 22px;
  border: 1px solid rgba(148, 163, 184, 0.38);
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.06);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
  overflow: hidden;
}

.win-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 4px;
  background: linear-gradient(
    180deg,
    var(--color-primary-a),
    var(--color-primary-c)
  );
  border-radius: 16px 0 0 16px;
}

.win-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.12);
  border-color: rgba(0, 196, 176, 0.5);
}

.win-pill {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 600;
  color: var(--color-muted);
  margin-bottom: 8px;
}

.win-metric {
  font-weight: 700;
  color: var(--color-ink);
  margin-bottom: 8px;
}

.win-body {
  font-size: 0.95rem;
  line-height: 1.55;
  color: var(--color-text);
  margin-bottom: 12px;
}

.win-card a {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--color-link);
  text-decoration: none;
  position: relative;
}

.win-card a::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  height: 1px;
  width: 0;
  background: var(--color-link-hover);
  transition: width 0.22s ease;
}

.win-card:hover a {
  color: var(--color-link-hover);
}

.win-card:hover a::after {
  width: 100%;
}

@media (max-width: 991px) {
  .wins-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 26px;
  }
}

@media (max-width: 575px) {
  .wins-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .section-recent-wins {
    padding: 60px 0 70px;
  }

  .section-recent-wins h2 {
    font-size: 1.7rem;
  }
}

/* =========================================================
   HOME – PROCESS / MY METHOD (TIMELINE)
   ========================================================= */

.process-section {
  padding: 80px 0 90px;
  background: #F9FBFF;
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  float: left;
  width: 100%;
}

.process-header {
  max-width: 720px;
  margin: 0 auto 48px;
}

.process-header h2 {
  font-size: 32px;
  line-height: 40px;
  margin-bottom: 10px;
}

.process-header p {
  font-size: 15px;
  line-height: 24px;
  color: var(--color-muted);
}

.process-track {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 28px;
  padding-top: 20px;
}

.process-track::before {
  content: "";
  position: absolute;
  top: 38px;
  left: 5%;
  right: 5%;
  height: 2px;
  background: linear-gradient(
    90deg,
    rgba(0, 196, 176, 0.18),
    rgba(40, 164, 208, 0.3)
  );
  z-index: 0;
}

.process-node {
  position: relative;
  z-index: 1;
  padding-top: 18px;
}

.process-node::before {
  content: "";
  position: absolute;
  top: 30px;
  left: 0;
  width: 18px;
  height: 18px;
  border-radius: 999px;
  background: #ffffff;
  border: 3px solid var(--color-primary-cta-alt);
  box-shadow: 0 0 0 4px rgba(0, 196, 176, 0.18);
}

.process-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(0, 196, 176, 0.08);
  margin-left: 26px;
  margin-bottom: 10px;
}

.process-step-num {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-primary-cta-alt);
}

.process-step-label {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-muted);
}

.process-node h3 {
  font-size: 18px;
  line-height: 24px;
  margin: 0 0 6px 26px;
  color: var(--color-ink);
}

.process-node p {
  font-size: 14px;
  line-height: 22px;
  color: var(--color-text);
  margin: 0 0 0 26px;
}

.process-node:hover::before {
  transform: scale(1.05);
  box-shadow: 0 0 0 6px rgba(0, 196, 176, 0.26);
}

.process-cta-wrap {
  margin-top: 40px;
}

.process-cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 26px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  border: 1px solid var(--color-primary-cta);
  background: #ffffff;
  color: var(--color-primary-cta);
  text-decoration: none;
  box-shadow: 0 10px 24px rgba(10, 0, 91, 0.15);
  transition: background 0.18s ease, color 0.18s ease, box-shadow 0.18s ease,
    transform 0.18s ease, border-color 0.18s ease;
}

.process-cta-btn:hover {
  background: var(--color-primary-cta);
  color: #ffffff;
  border-color: var(--color-primary-cta-alt);
  transform: translateY(-1px);
  box-shadow: 0 14px 32px rgba(10, 0, 91, 0.22);
}

@media (max-width: 991px) {
  .process-track {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .process-track::before {
    left: 8%;
    right: 8%;
  }
}

@media (max-width: 575px) {
  .process-section {
    padding: 60px 0 70px;
  }

  .process-header h2 {
    font-size: 26px;
    line-height: 34px;
  }

  .process-track {
    grid-template-columns: 1fr;
    row-gap: 32px;
  }

  .process-track::before {
    display: none;
  }

  .process-node::before {
    left: 0;
  }

  .process-badge,
  .process-node h3,
  .process-node p {
    margin-left: 26px;
  }
}

/* =========================================================
   HOME – TESTIMONIALS
   ========================================================= */

section.homesec6 {
  padding: 80px 0 90px;
  float: left;
  width: 100%;
  background: radial-gradient(circle at top left, #ECF5FF 0, #FFFFFF 55%);
  border-top: 1px solid var(--color-border);
}

.testimonials-intro {
  max-width: 360px;
}

.testimonials-kicker {
  display: inline-block;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(0, 196, 176, 0.08);
  color: var(--color-primary-cta-alt);
  margin-bottom: 10px;
}

.testimonials-intro h2 {
  font-size: 28px;
  line-height: 34px;
  margin-bottom: 12px;
}

.testimonials-intro p {
  font-size: 15px;
  line-height: 24px;
  color: var(--color-muted);
  margin-bottom: 18px;
}

.testimonials-metrics {
  list-style: none;
  padding: 0;
  margin: 0;
}

.testimonials-metrics li {
  font-size: 14px;
  line-height: 22px;
  color: var(--color-text);
  margin-bottom: 6px;
}

.testimonialslider {
  position: relative !important;
}

.testimonialslider button.slick-prev.slick-arrow,
.testimonialslider button.slick-next.slick-arrow {
  position: absolute;
  bottom: -48px;
  width: 34px !important;
  height: 34px;
  font-size: 0;
  background-color: var(--color-primary-cta);
  border-radius: 999px;
  box-shadow: 0 6px 18px rgba(10, 0, 91, 0.28);
  border: 0;
  z-index: 2;
}

.testimonialslider button.slick-prev.slick-arrow {
  right: 60px;
}

.testimonialslider button.slick-next.slick-arrow {
  right: 16px;
}

.testimonialslider button.slick-prev.slick-arrow:before,
.testimonialslider button.slick-next.slick-arrow:before {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 700;
  color: #ffffff;
}

.testimonialslider button.slick-prev.slick-arrow:before {
  content: '<';
}

.testimonialslider button.slick-next.slick-arrow:before {
  content: '>';
}

.card.testimonial-card {
  border: 0;
  border-radius: 18px;
  padding: 5px;
  background: transparent;
}

.authordata {
  position: relative;
  background: #ffffff;
  padding: 26px 24px 22px;
  margin: 0;
  border-radius: 18px;
  box-shadow: 0 14px 30px rgba(15, 23, 42, 0.10);
  border: 1px solid rgba(148, 163, 184, 0.3);
}

.authordata::before {
  content: "";
  position: absolute;
  left: 0;
  top: 16px;
  bottom: 16px;
  width: 3px;
  border-radius: 999px;
  background: linear-gradient(
    180deg,
    var(--color-primary-cta-alt),
    var(--color-primary-c)
  );
}

.testimonial-quote-icon {
  font-size: 40px;
  line-height: 1;
  color: rgba(0, 196, 176, 0.4);
  margin-left: 4px;
  margin-bottom: 8px;
}

.authordata p {
  font-size: 15px;
  line-height: 24px;
  color: var(--color-text);
  margin-bottom: 14px;
}

.testimonial-meta h3 {
  font-size: 16px;
  line-height: 22px;
  margin: 0;
  color: var(--color-ink);
}

.testimonial-role {
  font-size: 13px;
  line-height: 20px;
  color: var(--color-muted);
  margin: 2px 0 8px;
}

ul.rating {
  list-style: none;
  padding: 0;
  margin: 0;
}

ul.rating li {
  display: inline-block;
  margin-right: 2px;
}

@media (max-width: 991px) {
  section.homesec6 {
    padding: 60px 0 70px;
  }

  .testimonials-intro {
    max-width: 100%;
    margin-bottom: 28px;
  }

  .testimonials-intro h2 {
    font-size: 24px;
    line-height: 30px;
  }

  .testimonialslider button.slick-prev.slick-arrow,
  .testimonialslider button.slick-next.slick-arrow {
    bottom: -40px;
  }
}

@media (max-width: 575px) {
  .authordata {
    padding: 22px 18px 20px;
  }

  .testimonial-quote-icon {
    font-size: 34px;
  }

  .testimonialslider button.slick-prev.slick-arrow,
  .testimonialslider button.slick-next.slick-arrow {
    bottom: -36px;
    width: 30px !important;
    height: 30px;
  }
}

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

.faq-sec {
  padding: 80px 0 90px;
  background: #F5F7FB;
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  float: left;
  width: 100%;
}

.faq-layout {
  align-items: stretch;
}

.faq-intro {
  padding-right: 10px;
}

.faq-kicker {
  display: inline-block;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  padding: 4px 10px;
  border-radius: 999px;
  border: 1px solid #CBD5E1;
  background: #FFFFFF;
  color: var(--color-muted);
  margin-bottom: 10px;
}

.faq-intro h2 {
  font-size: 30px;
  line-height: 38px;
  margin-bottom: 10px;
}

.faq-intro p {
  font-size: 15px;
  line-height: 24px;
  color: var(--color-muted);
  margin-bottom: 16px;
}

.faq-highlights {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
}

.faq-highlights li {
  position: relative;
  padding-left: 20px;
  font-size: 14px;
  line-height: 22px;
  color: var(--color-text);
  margin-bottom: 6px;
}

.faq-highlights li::before {
  content: "●";
  position: absolute;
  left: 0;
  top: 2px;
  font-size: 10px;
  color: var(--color-primary-cta-alt);
}

.faq-cta {
  margin-top: 6px;
}

.faq-accordion {
  background: transparent;
}

.faq-accordion .accordion-item {
  border-radius: 14px;
  border: 1px solid #E2E8F0;
  background: #FFFFFF;
  overflow: hidden;
  margin-bottom: 12px;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.05);
}

.faq-accordion .accordion-item:last-child {
  margin-bottom: 0;
}

.faq-accordion .accordion-header {
  margin: 0;
}

.faq-accordion .accordion-button {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 18px;
  font-size: 14px;
  font-weight: 500;
  color: var(--color-ink);
  background: #FFFFFF;
  box-shadow: none;
}

.faq-accordion .accordion-button:not(.collapsed) {
  background: #F1FAF9;
  color: var(--color-ink);
  border-bottom: 1px solid #E2E8F0;
}

.faq-accordion .accordion-button:focus {
  box-shadow: 0 0 0 1px rgba(0, 196, 176, 0.6);
}

.faq-label {
  flex-shrink: 0;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 3px 8px;
  border-radius: 999px;
  background: #E0F2FE;
  color: #0369A1;
}

.faq-question {
  flex: 1;
  text-align: left;
}

.faq-accordion .accordion-button::after {
  width: 1.8rem;
  height: 1.8rem;
}

.faq-accordion .accordion-body {
  font-size: 14px;
  line-height: 22px;
  color: var(--color-text);
  padding: 12px 18px 16px;
}

@media (max-width: 991px) {
  .faq-sec {
    padding: 60px 0 70px;
  }

  .faq-intro {
    padding-right: 0;
    margin-bottom: 10px;
  }
}

@media (max-width: 575px) {
  .faq-intro h2 {
    font-size: 26px;
    line-height: 32px;
  }

  .faq-accordion .accordion-button {
    align-items: flex-start;
    flex-direction: column;
  }

  .faq-label {
    margin-bottom: 2px;
  }

  .faq-question {
    width: 100%;
  }
}

/* =========================================================
   BLOG / INSIGHTS SECTION (HOME)
   ========================================================= */

.insights-section {
  padding: 80px 0 90px;
  background: linear-gradient(var(--color-surface-alt), #ffffff);
  float: left;
  width: 100%;
}

.insights-header-row {
  margin-bottom: 36px;
}

.insights-header {
  text-align: left;
}

.insights-header .pill-kicker {
  display: inline-block;
  font-size: 11px;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 999px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  background-color: #ffffff;
  color: var(--color-muted);
  margin-bottom: 10px;
}

.insights-header h2 {
  font-size: 28px;
  line-height: 1.3;
  margin-bottom: 8px;
}

.insights-header p {
  font-size: 15px;
  line-height: 1.6;
  color: var(--color-muted);
  margin-bottom: 0;
}

.insights-header-cta {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.insights-all-btn {
  float: none;
  min-width: 210px;
}

.insights-grid {
  margin-top: 10px;
}

.insight-card {
  height: 100%;
  background-color: #ffffff;
  border-radius: 16px;
  border: 1px solid var(--color-border);
  overflow: hidden;
  box-shadow: 0 14px 40px rgba(15, 23, 42, 0.06);
  display: flex;
  flex-direction: column;
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.insight-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 46px rgba(15, 23, 42, 0.10);
  border-color: rgba(0, 196, 176, 0.6);
}

.insight-thumb {
  position: relative;
  overflow: hidden;
  max-height: 220px;
}

.insight-thumb img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
  transition: transform 0.35s ease;
}

.insight-card:hover .insight-thumb img {
  transform: scale(1.04);
}

.insight-body {
  padding: 18px 18px 20px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.insight-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
  font-size: 11px;
}

.insight-pill {
  padding: 4px 9px;
  border-radius: 999px;
  background: rgba(0, 196, 176, 0.08);
  color: var(--color-primary-cta);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.insight-date {
  color: var(--color-muted);
}

.insight-title {
  font-size: 18px;
  line-height: 1.35;
  margin-bottom: 8px;
}

.insight-title a {
  color: var(--color-ink);
  text-decoration: none;
}

.insight-title a:hover {
  color: var(--color-link-hover);
}

.insight-excerpt {
  font-size: 14px;
  line-height: 1.6;
  color: var(--color-text);
  margin-bottom: 14px;
}

.insight-read {
  margin-top: auto;
  font-size: 14px;
  font-weight: 600;
  color: var(--color-link);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.insight-read:hover {
  color: var(--color-link-hover);
}

@media (max-width: 991px) {
  .insights-header {
    text-align: center;
  }

  .insights-header-cta {
    justify-content: center;
  }

  .insights-all-btn {
    margin-top: 10px;
  }
}

@media (max-width: 575px) {
  .insights-section {
    padding: 60px 0 70px;
  }

  .insight-body {
    padding: 16px 14px 18px;
  }
}

/* =========================================================
   FINAL CTA
   ========================================================= */

.enhanced-final-cta {
  padding: 90px 0;
  background: linear-gradient(135deg, #f8fafc 0%, #eef5ff 100%);
  border-top: 1px solid var(--color-border);
  float: left;
  width: 100%;
}

.final-cta-box {
  max-width: 760px;
  margin: 0 auto;
  padding: 60px 40px;
  text-align: center;
  background: #ffffff;
  border-radius: 20px;
  border: 1px solid rgba(15,23,42,0.08);
  box-shadow: 0 22px 44px rgba(0,0,0,0.06);
  position: relative;
  overflow: hidden;
}

.final-cta-box::before {
  content: "";
  position: absolute;
  top: -140px;
  right: -140px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(0,196,176,0.12), rgba(0,196,176,0));
  border-radius: 50%;
}

.final-cta-box::after {
  content: "";
  position: absolute;
  bottom: -160px;
  left: -160px;
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(0,102,255,0.12), rgba(0,102,255,0));
  border-radius: 50%;
}

.final-cta-box .pill-kicker {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .1em;
  padding: 6px 12px;
  border-radius: 999px;
  background: #ecf4ff;
  color: var(--color-primary-cta);
  margin-bottom: 14px;
  text-transform: uppercase;
}

.final-cta-box h2 {
  font-size: 32px;
  line-height: 1.28;
  margin-bottom: 18px;
  color: var(--color-heading);
}

.final-cta-box p {
  font-size: 16px;
  margin: 25px auto 28px;
  max-width: 620px;
  color: var(--color-text);
}

.cta-btn-lg {
  display: inline-block;
  padding: 16px 34px;
  font-size: 17px;
  font-weight: 600;
  background: var(--color-primary-cta);
  color: #ffffff;
  border-radius: 12px;
  text-decoration: none;
  transition: background .22s ease, transform .22s ease;
}

.cta-btn-lg:hover {
  background: var(--color-primary-cta-hover);
  transform: translateY(-2px);
}

.final-note {
  font-size: 14px;
  opacity: .7;
  margin-top: 14px;
}

@media (max-width: 768px) {
  .final-cta-box {
    padding: 50px 28px;
  }

  .final-cta-box h2 {
    font-size: 26px;
  }
}

/* =========================================================
   INNER PAGE – BANNERS
   ========================================================= */

section.innerpagebanner {
  display: none;
  float: left;
  width: 100%;
  padding: 80px 0;
  background-image: linear-gradient(
    135deg,
    var(--color-primary-a),
    var(--color-primary-c)
  );
}

section.innerpagebanner h1 {
  color: #fff;
}

/* =========================================================
   ABOUT PAGE
   ========================================================= */
section.homesec2.about-section.about-section--intro {
    background: radial-gradient(circle at 15% 10%, rgba(255, 255, 255, 0.22) 0, transparent 48%), radial-gradient(circle at 82% 18%, rgba(0, 0, 0, 0.18) 0, transparent 52%), linear-gradient(135deg, #00c4b000 0%, #28a4d061 40%, #0a4e8a82 100%);
    margin: 0px;
    padding-top: 120px;
}
.about-sec2 ul {
  list-style-type: disc;
  float: left;
  width: 100%;
}

.about-sec2 ul li {
  margin: 5px 0;
  display: inline;
  float: left;
  font-size: 17.6px;
  font-weight: 400;
  line-height: 24.64px;
  font-family: Lexend-VariableFont;
  color: #43464b;
}

.homesec2-inner.coresec ul {
  margin: 15px 0;
  padding: 0;
  float: left;
  width: 100%;
}

.homesec2-inner.coresec ul li {
  background-color: #43464b;
  margin: 10px 20px 10px 0;
  display: inline;
  padding: 15px;
  float: left;
  font-size: 17.6px;
  font-weight: 400;
  line-height: 24.64px;
  font-family: Lexend-VariableFont;
  color: #ffffff;
}

pre {
  background: #1e1e1e;
  color: #dcdcdc;
  padding: 15px;
  border-radius: 8px;
  overflow-x: auto;
  font-family: monospace;
  font-size: 14px;
  line-height: 1.4;
}

body.page-template-about_tpl section.homesec2.colbg {
  float: left;
  width: 100%;
  margin: 0 auto;
  background:
    radial-gradient(circle at top left, rgba(0,196,176,0.10) 0, transparent 55%),
    #F5F7FB;
  padding: 60px 0;
}

.about-section--intro {
  padding-top: 40px;
  padding-bottom: 60px;
}

/* =========================================================
   BLOG – HEADER / TOC / LISTING / SINGLE
   ========================================================= */

header.entry-header {
  background-image: linear-gradient(
    135deg,
    var(--color-primary-b),
    var(--color-primary-c)
  );
  padding: 80px 0;
  color: #fff !important;
}

h1.entry-title {
  font-size: 50px !important;
  line-height: 57px !important;
  text-transform: uppercase;
  margin-top: 0;
  width: 90%;
  color: #fff;
}

.entry-meta {
  font-size: 15px;
  font-weight: 700;
  font-family: 'Lexend-Regular';
}

header.entry-header .entry-meta a {
  color: #fff;
  font-weight: 700;
  text-decoration: underline;
}

section.innerpage-banner {
  background-color: var(--color-legacy-blue);
  padding: 90px 0;
  text-align: center;
}
.bloglistsec1card {
    float: left;
    width: 95%;
}
.bloglistsec1card h3 {
    margin: 15px 0px 10px;
}
.bloglistsec1card  p.text-muted.mt-3 {
    font-size: 15px;
}
.bloglistsec1card img {
    height: 420px;
    width: 100%;
}
.postlist h3 {
    font-size: 26px;
    line-height: 32px;
}
.postlist small a {
    font-family: Lexend-VariableFont;
    font-Size: 16px;
    line-height: 20px;
    font-weight: 500;
    background-color: #0A005B;
    color: #fff;
    border-radius: 5px;
    padding: 15px 25px 16px;
    margin-top: 8px;
    float: left;
    text-transform: uppercase;
    margin-right: 10px;
}
.list-group .row:nth-of-type(2) {
    border-top: 1px solid #ccc;
    border-bottom: 1px solid #ccc;
    padding: 50px 0;
    margin: 50px 0px;
}
.postlist p, .postlist small, .postlist h3 {
    float: left;
    width: 100%;
}
a.roundbg {
    background-color: #fff;
    padding: 6px 32px;
    border-radius: 50%;
    font-size: 40px;
    color: #797979;
    font-weight: 900;
    border: 1px solid #565656;
    position: relative;
}
span.blog-arrow {
    margin-top: -5px;
    position: absolute;
    left: 37%;
}
section.bloglistsec1 h3 a, section.bloglistsec1 h3 a {
    color: #000;
}

/* merged, single definition for bloglistsec */
section.bloglistsec {
  padding: 40px 0;
  float: left;
  width: 100%;
}

span.page-numbers.current,
a.page-numbers {
  background-color: var(--color-primary-cta);
  padding: 7px 15px;
  color: #fff;
  margin: 0 2px;
  font-family: 'Lexend-Regular';
}

.cus-pagination {
  float: left;
  width: 100%;
  padding: 40px 0 10px;
  text-align: center;
}

a.page-numbers {
  background-color: #ffffff !important;
  text-decoration: none;
  color: #000;
}

section.innerpage-banner h1 {
  color: #fff;
}

.post-navigation a.next-post,
.post-navigation a.previous-post {
  color: #fff;
  background-color: var(--color-primary-cta);
  font-family: Lexend-VariableFont;
  font-size: 14px;
  line-height: 20px;
  font-weight: 500;
  padding: 10px 15px;
  margin-right: 1px;
  border-radius: 6px;
}

nav.breadcrumb a {
  color: #fff;
  font-weight: 600;
  padding: 0 7px;
}

.entry-content {
  padding-top: 30px;
  float: left;
  width: 100%;
}

.postcontent ul li {
  font-size: 17.6px;
  font-weight: 400;
  line-height: 24.64px;
  font-family: Lexend-VariableFont;
  color: #43464b;
}

footer.entry-meta,
div#comments {
  display: none;
}

.toc-sidebar {
  padding: 30px;
  background: #fff;
  margin-bottom: 20px;
  border-radius: 12px;
  box-shadow: rgb(25 0 233 / 20%) 0 2px 8px 0;
  border-left: 4px solid #48a1d0;
}

.toc-sidebar ul {
  list-style: none;
  padding-left: 0;
}

.toc-sidebar li {
  margin: 5px 0;
}

.toc-sidebar li.toc-level-3 {
  padding-left: 15px;
  font-size: 90%;
}

.toc-sidebar ul li a {
  font-family: 'Lexend-Regular';
  color: #000;
}

.toc-sidebar h2 {
  font-size: 26px;
}

.pr-3,
.px-3 {
  float: left;
}

.postnav {
  float: left;
  width: 100%;
  padding: 0;
}

.single .entry-content {
  margin-bottom: 0 !important;
}

section.hbanner.bloglisthead {
background: radial-gradient(circle at 15% 10%, rgba(255, 255, 255, 0.22) 0, transparent 48%), radial-gradient(circle at 82% 18%, rgba(0, 0, 0, 0.18) 0, transparent 52%), linear-gradient(135deg, #00c4b000 0%, #28a4d061 40%, #0a4e8a82 100%);
}

section.hbanner.bloglisthead .homebannercont p {
  color: #000000;
}

.hbanner.bloglisthead img {
  max-width: 100%;
  border-radius: 0;
  margin: 0;
}

section.bloglistsec1 {
  padding: 80px 0;
  float: left;
  width: 100%;
}

span.page-numbers.current,
a.page-numbers {
  background-color: var(--color-primary-cta);
  padding: 7px 15px;
  color: #fff;
  margin: 0 2px;
  font-family: 'Lexend-Regular';
}

.cus-pagination {
  float: left;
  width: 100%;
  padding: 40px 0 10px;
  text-align: center;
}

post-navigation a.next-post,
.post-navigation a.previous-post {
  color: #fff;
  background-color: var(--color-primary-cta);
  font-family: Lexend-VariableFont;
  font-size: 14px;
  line-height: 20px;
  font-weight: 500;
  padding: 10px 15px;
  margin-right: 1px;
  border-radius: 6px;
}

/* ... (rest of blog/archive styles unchanged from your original, kept for brevity) ... */

/* =========================================================
   CONTACT PAGE
   ========================================================= */

/* main contact layout */
section.homesec3.contsection {
    background-color: #906868;
    padding-top: 130px;
    /* background: radial-gradient(circle at top left, rgb(0 196 176 / 7%) 0, #00000036 55%), rgb(209 209 209 / 26%); */
	background: radial-gradient(circle at 15% 10%, rgba(255, 255, 255, 0.22) 0, transparent 48%), radial-gradient(circle at 82% 18%, rgba(0, 0, 0, 0.18) 0, transparent 52%), linear-gradient(135deg, #00c4b000 0%, #28a4d061 40%, #0a4e8a82 100%);
}
section.homesec3.contsection h1 {
  font-size: 65px !important;
  line-height: 73px !important;
}

.contsection-inner p.number {
  font-size: 60px;
  color: #000;
  line-height: 38px;
}

.contsection-inner p.text {
  color: #000;
  font-size: 20px;
  line-height: 28px;
}

.contsection-inner {
  margin-top: 50px;
  border-bottom: 4px solid #48a1d0;
}

.contsection-inner.colr {
  border-bottom: 4px solid #27d0bf;
}

section.homesec3.contsection .cont-form {
  /* background-color: #a1a0a0; */
  padding: 30px;
}

section.homesec3.contsection .cont-form h2,
section.homesec3.contsection .cont-form p {
  color: #fff;
}

section.homesec3.contsection .cont-form input.wpcf7-submit {
  color: #0A005B;
  background-color: #fff;
}

.author-info a {
    color: #000000;
}
body.single .mt-5 {
    margin-top: 0rem !important;
}
body.single .author-avatar .avatar {
    height: auto;
    width: auto;
	border-radius: 50%;
}
.author-info h3 {
    font-size: 22px;
    color: #43464b;
}
body.single .author-info p {
    font-size: 15px;
    line-height: 22px;
	color:#000000;
}
p.posteddate {
    color: #f9f9f9;
    margin-bottom: 2px;
}
.author-box {
    padding: 15px 7%;
    border-radius: 8px;
    background: #ffffff;
    text-align: center;
}
.author-info {
    margin: 17px 0;
}
.authormeta {
    float: left;
	border-top: 1px solid #EEE;
    margin-top: 60px;
    padding-top: 30px;
    border-bottom: 1px solid #EEE;
    padding-bottom: 30px;
}

/* add 50px space between header and hero only on Contact Page template */
.page-template-contact-page header {
  margin-bottom: 50px;
}


body.single.single-post img.card-img-top.wp-post-image {
    height: auto;
}
body.single.single-post .post-navigation.d-flex.justify-content-between {
    float: left;
    width: 100%;
}

body.single.single-post .main {
    float: left;
    width: 100%;
    z-index: 0 !important;
    position: relative;
}
body.single.single-post nav.breadcrumb-wrap {
    margin-top: 80px;
}

/* =========================================================
   TR MODAL (Popup Form) — polished + responsive
   Scope: .tr-modal only
   ========================================================= */

/* Base wrapper (hidden by default) */
.tr-modal{
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 18px;
}

/* Visible state (your JS toggles .is-open) */
.tr-modal.is-open{
  display: flex;
}

/* Backdrop */
.tr-modal__overlay{
  position: absolute;
  inset: 0;
  background: rgba(2, 6, 23, 0.55);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

/* Panel */
.tr-modal__panel{
  position: relative;
  width: min(720px, 100%);
  max-height: calc(100vh - 36px);
  overflow: auto;
  border-radius: 18px;
  background: #ffffff;
  box-shadow: 0 30px 80px rgba(2, 6, 23, 0.35);
  border: 1px solid rgba(15, 23, 42, 0.10);
  padding: 22px 22px 18px;
  animation: trModalIn .18s ease-out;
}

/* Animation */
@keyframes trModalIn{
  from{ transform: translateY(10px) scale(0.98); opacity: 0; }
  to{ transform: translateY(0) scale(1); opacity: 1; }
}

/* Close button */
.tr-modal__close{
  position: absolute;
  top: 12px;
  right: 12px;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  border: 1px solid rgba(15, 23, 42, 0.10);
  background: #fff;
  color: #0f172a;
  font-size: 26px;
  line-height: 1;
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
}
.tr-modal__close:hover{
  transform: translateY(-1px);
  box-shadow: 0 10px 20px rgba(2, 6, 23, 0.12);
  background: #f8fafc;
}
.tr-modal__close:focus{
  outline: 0;
  box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.22);
}

/* Header */
.tr-modal__header{
  padding-right: 54px;
  margin-bottom: 14px;
}
.tr-modal__header h3{
  margin: 0 0 6px;
  font-size: 22px;
  font-weight: 800;
  color: #0f172a;
  letter-spacing: -0.2px;
}
.tr-modal__header p{
  margin: 0;
  font-size: 14px;
  color: #475569;
  line-height: 1.5;
}

/* Body spacing */
.tr-modal__body{
  margin-top: 12px;
}

/* =========================================================
   CF7 inside popup — clean form UI
   ========================================================= */

.tr-modal .wpcf7{
  margin: 0;
}

.tr-modal .wpcf7 form{
  margin: 0;
}

.tr-modal .wpcf7-form label{
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: #0f172a;
  margin: 0 0 8px;
}

/* Inputs */
.tr-modal .wpcf7 input[type="text"],
.tr-modal .wpcf7 input[type="email"],
.tr-modal .wpcf7 input[type="tel"],
.tr-modal .wpcf7 input[type="url"],
.tr-modal .wpcf7 select,
.tr-modal .wpcf7 textarea{
  width: 100%;
  border-radius: 12px;
  border: 1px solid rgba(15, 23, 42, 0.14);
  background: #fff;
  padding: 12px 14px;
  font-size: 14px;
  color: #0f172a;
  outline: none;
  transition: box-shadow .15s ease, border-color .15s ease, transform .15s ease;
}

.tr-modal .wpcf7 textarea{
  min-height: 120px;
  resize: vertical;
}

.tr-modal .wpcf7 input:focus,
.tr-modal .wpcf7 select:focus,
.tr-modal .wpcf7 textarea:focus{
  border-color: rgba(37, 99, 235, 0.65);
  box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.18);
}

/* 2-column grid on desktop (optional)
   If you wrap fields in <span class="tr-grid">...</span> it will auto grid. */
.tr-modal .tr-grid{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
@media (max-width: 640px){
  .tr-modal .tr-grid{ grid-template-columns: 1fr; }
}

/* Submit button */
.tr-modal .wpcf7 input[type="submit"]{
  width: 100%;
  border: 0;
  border-radius: 12px;
  padding: 12px 16px;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  color: #ffffff;
  background: #0A005B; /* matches your star color */
  box-shadow: 0 16px 30px rgba(10, 0, 91, 0.22);
  transition: transform .15s ease, box-shadow .15s ease, filter .15s ease;
}

.tr-modal .wpcf7 input[type="submit"]:hover{
  transform: translateY(-1px);
  box-shadow: 0 18px 36px rgba(10, 0, 91, 0.28);
  filter: brightness(1.03);
}

/* CF7 messages */
.tr-modal .wpcf7-response-output{
  margin: 12px 0 0;
  border-radius: 12px;
  padding: 12px 14px;
  font-size: 13px;
  line-height: 1.4;
}

.tr-modal .wpcf7-not-valid-tip{
  font-size: 12px;
  margin-top: 6px;
}

/* Spinner alignment */
.tr-modal .wpcf7-spinner{
  display: inline-block;
  margin-left: 10px;
}

/* Mobile: nicer padding */
@media (max-width: 480px){
  .tr-modal__panel{
    border-radius: 16px;
    padding: 18px 16px 14px;
  }
  .tr-modal__header h3{
    font-size: 20px;
  }
}

/* =========================================================
   FOOTER
   ========================================================= */

body #footer {
  background-color: #fff;
  float: left;
  width: 100%;
  padding: 90px 0 0 0;
  border-top: 1px solid #ddd;
}

.footerlogo a.navbar-brand img {
  width: 80% !important;
}

.social a svg {
  fill: var(--color-primary-cta);
}

.social a {
  float: left;
  width: 24px;
  margin-right: 24px;
  height: 24px;
}

.social {
  float: left;
  width: 100%;
}

ul#menu-footer-menu-1,
ul#menu-footer-menu-2,
ul#menu-footer-menu-3,
ul#footermenu {
  list-style: none;
  padding: 0;
  margin: 0;
}

footer#footer h3 {
  font-size: 20px;
  line-height: 24px;
  font-weight: 600;
  color: #212529;
  font-family: 'Lexend-Regular';
}

#footer .menu-item a {
  color: #54595F !important;
  font-size: 17.6px;
  font-weight: 500;
  line-height: 28.4px;
  font-family: 'Lexend-Regular';
}

ul#menu-footer-menu-3 {
  text-align: right;
}

ul#menu-footer-menu-3 .menu-item a {
  font-size: 16px;
}

.copyright {
  border-top: 1px solid #ddd;
  padding: 20px 0;
  margin-top: 100px;
}

.copyright p {
  font-size: 16px;
  line-height: 24px;
  color: #54595F !important;
}

ul#menu-footer-menu li.current_page_item a {
  color: #000 !important;
}

ul#menu-footer-menu li.menu-item {
  display: inline;
  margin: 0 10px;
}

ul#menu-footer-menu li.menu-item a {
  color: #54595F !important;
  font-weight: 500;
  font-size: 14px;
  font-family: 'Lexend-VariableFont';
}

ul#menu-footer-menu {
  float: right;
  width: 100%;
  list-style: none;
  text-align: right;
  margin-top: 10px !important;
}

/* =========================================================
   GLOBAL RESPONSIVE WRAPPERS
   ========================================================= */

@media only screen and (max-width: 991px) {
  footer#footer h3 {
    margin-top: 20px;
  }

  .copyright {
    padding: 20px 0;
    margin-top: 30px;
    text-align: center;
  }

  ul#menu-footer-menu {
    text-align: justify;
  }

  body #footer {
    padding: 60px 0 0 0;
  }

  section.homesec3.contsection h1 {
    font-size: 34px !important;
    line-height: 40px !important;
  }

  .contsection-inner p.number {
    font-size: 40px;
  }

  .homesec2-inner.coresec {
    margin-top: 60px;
  }

  .m-t40 {
    margin-top: 40px;
  }
}

@media only screen and (max-width: 767px) {
  /* extra mobile tweaks if needed */
}

@media only screen and (max-width: 469px) {
  /* smallest screens */
}