/* ========== Design tokens ========== */
:root {
  /* Palette: warm neutrals + deep charcoal + soft green accent (no blues) */
  --bg: #f7f5f2;
  --surface: #ffffff;
  --charcoal: #2b2d2f;
  --muted: #6b6e72;
  --border: #e7e3dc;
  --accent: rgb(159, 133, 85);    
  --accent-2: #b26e2f;    /* warm copper */
  --accent-soft: #e8f3ef; /* pale green wash */
  --focus: #ffbf69;       /* accessible focus color */

  /* Typography */
  --font-sans: "Segoe UI", Inter, Roboto, Helvetica, Arial, sans-serif;
  --fs-300: 0.95rem;
  --fs-400: 1.05rem;
  --fs-500: 1.25rem;
  --fs-600: 1.6rem;
  --fs-700: 2rem;
  --fs-800: 2.5rem;

  /* Layout */
  --container: 1100px;
  --radius-sm: 8px;
  --radius-md: 14px;
  --shadow-1: 0 6px 20px rgba(0, 0, 0, 0.06);
  --shadow-2: 0 10px 30px rgba(0, 0, 0, 0.08);
}

/* ========== Base reset ========== */
*,
*::before,
*::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--charcoal);
  font-family: var(--font-sans);
  line-height: 1.6;
  font-size: var(--fs-400);
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--accent); text-decoration: none; }
a:hover { text-decoration: underline; }
:focus-visible {
  outline: 3px solid var(--focus);
  outline-offset: 2px;
}

/* ========== Header ========== */
header {
  background:#fff;
  border-bottom: 1px solid var(--border);
  padding: 1rem 0;
}

.header-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 16px;
  align-items: center;
}

header img {
  max-height: 75px;	width: auto;
}
.titleholder{
	    display: flex;
    justify-content: space-between;
}

header h1 {
  margin: 0;
  font-size: var(--fs-600);
  font-weight: 700;
  letter-spacing: 0.2px;
  color: var(--charcoal);
}

/* ========== Navigation ========== */
nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 24px;
  align-items: center;
  justify-content: flex-end;
}

nav ul li a {
  display: inline-block;
  padding: 10px 12px;
  border-radius: var(--radius-sm);
  color: var(--charcoal);
  font-weight: 600;
  letter-spacing: 0.2px;
  transition: background 0.25s ease, color 0.25s ease, box-shadow 0.25s ease;
}

nav ul li a:hover {
  background: var(--accent-soft);
  color: var(--accent);
  box-shadow: var(--shadow-1);
}

nav  ul li.current_page_item a,
nav  ul li.current-menu-item a {
  background: var(--accent);
  color: #fff;
  box-shadow: var(--shadow-1);
}

/* ========== Page container ========== */
.container {
  max-width: var(--container);
  margin: 32px auto;
  padding: 0 20px;
}

.section {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-1);
  padding: 28px;
}

/* ========== Headings and content ========== */
.wp-block-heading,
.container h1.wp-block-heading {
  font-size: var(--fs-800);
  line-height: 1.2;
  margin: 0 0 10px;
  letter-spacing: 0.3px;
  color: var(--charcoal);
}

.container h2.wp-block-heading {
  font-size: var(--fs-600);
  color: var(--accent);
  margin: 24px 0 12px;
}

.container p {
  margin: 0 0 16px;
  color: var(--muted);
}

.container p strong {
  display: block;
  font-size: var(--fs-500);
  color: var(--charcoal);
  margin-bottom: 8px;
}

/* ========== Hero (optional wrapper if you add one) ========== */
.hero {
  max-width: var(--container);
  margin: 24px auto;
  padding: 0 20px;
}

.hero-inner {
  background:
    linear-gradient(180deg, #fff 0%, #fbfaf8 100%),
    radial-gradient(600px 180px at 85% 10%, #f0faf6 0%, transparent 70%);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-2);
  padding: 40px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 28px;
  align-items: center;
}

.hero h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin: 0 0 12px;
  color: var(--charcoal);
}

.hero p {
  font-size: var(--fs-500);
  color: var(--muted);
  margin: 0 0 20px;
}

.hero-cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* ========== Buttons ========== */
.button,
.wp-block-button__link,
button {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  border: none;
  border-radius: 999px;
  padding: 12px 20px;
  font-weight: 700;
  letter-spacing: 0.3px;
  transition: transform 0.08s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.button:hover,
.wp-block-button__link:hover,
button:hover {
  background: #256c5d;
  box-shadow: var(--shadow-2);
}

.button.secondary {
  background: var(--accent-2);
}
.button.secondary:hover {
  background: #965f28;
}

/* ========== Service cards (like Joy In Mortgages vibe) ========== */
.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 18px;
}

.service-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-1);
  padding: 20px;
  display: grid;
  gap: 12px;
  transition: transform 0.12s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.service-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-2);
  border-color: #ddd4c8;
}

.service-card h3 {
  margin: 0;
  font-size: var(--fs-500);
  color: var(--charcoal);
}

.service-card p {
  margin: 0;
  color: var(--muted);
}

.service-card .tag {
  display: inline-block;
  background: var(--accent-soft);
  color: var(--accent);
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.2px;
}

/* ========== Lists ========== */
ul.checklist {
  list-style: none;
  padding: 0;
  margin: 0;
}

ul.checklist li {
  position: relative;
  padding-left: 28px;
  margin: 10px 0;
  color: var(--muted);
}

ul.checklist li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--accent);
  font-weight: 800;
}

/* ========== Forms (Contact) ========== */
form {
  display: grid;
  gap: 12px;
}

input[type="text"],
input[type="email"],
input[type="tel"],
textarea,
select {
  width: 100%;
  padding: 12px 14px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  background: #fff;
  color: var(--charcoal);
  font-size: var(--fs-400);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

textarea { min-height: 120px; resize: vertical; }

input:focus,
textarea:focus,
select:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 4px rgba(46, 125, 108, 0.15);
}

/* ========== Contact page template ========== */
.contact-page {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.78), rgba(247, 245, 242, 0.98)),
    radial-gradient(720px 260px at 15% 12%, rgba(159, 133, 85, 0.18), transparent 68%),
    radial-gradient(560px 240px at 90% 22%, rgba(178, 110, 47, 0.12), transparent 70%);
  padding-bottom: 24px;
}

.contact-hero {
  padding: 72px 20px 34px;
  text-align: center;
}

.contact-hero-inner {
  max-width: 760px;
  margin: 0 auto;
}

.contact-kicker {
  margin: 0 0 8px;
  color: var(--accent);
  font-size: var(--fs-300);
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-hero h1 {
  margin: 0 0 14px;
  color: var(--charcoal);
  font-size: clamp(2.2rem, 5vw, 4rem);
  line-height: 1.08;
}

.contact-hero p {
  margin: 0 auto;
  max-width: 680px;
  color: var(--muted);
  font-size: var(--fs-500);
}

.contact-shell {
  max-width: var(--container);
  margin: 0 auto 32px;
  padding: 0 20px;
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 22px;
  align-items: stretch;
}

.contact-panel {
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-2);
}

.contact-details-panel {
  padding: 34px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 28px;
}

.contact-panel-label {
  margin: 0;
  color: var(--accent);
  font-size: var(--fs-300);
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-details-panel h2 {
  margin: 0;
  color: var(--charcoal);
  font-size: var(--fs-700);
  line-height: 1.15;
}

.contact-details-panel p {
  margin: 0;
  color: var(--muted);
}

.contact-methods {
  display: grid;
  gap: 10px;
  padding-top: 22px;
  border-top: 1px solid var(--border);
}

.contact-methods a {
  color: var(--charcoal);
  font-weight: 800;
}

.contact-methods span {
  color: var(--muted);
}

.contact-form-panel {
  padding: 34px;
}

.sierra-contact-form {
  gap: 18px;
}

.contact-field-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.sierra-contact-form label {
  display: grid;
  gap: 7px;
  color: var(--charcoal);
  font-weight: 800;
}

.sierra-contact-form label span {
  font-size: var(--fs-300);
}

.sierra-contact-form input,
.sierra-contact-form textarea {
  border-color: #ddd4c8;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.65);
}

.sierra-contact-form textarea {
  min-height: 170px;
}

.sierra-contact-form button {
  width: fit-content;
  min-width: 170px;
  cursor: pointer;
}

.contact-notice {
  margin-bottom: 18px;
  padding: 14px 16px;
  border-radius: var(--radius-sm);
  font-weight: 700;
}

.contact-notice p {
  margin: 0;
}

.contact-notice p + p {
  margin-top: 6px;
}

.contact-notice-success {
  background: #edf7ef;
  border: 1px solid #b9dec1;
  color: #245d32;
}

.contact-notice-error {
  background: #fff1ed;
  border: 1px solid #efc2b2;
  color: #8a321c;
}

.contact-hidden-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

/* Gravity Forms / WP core button alignment */
.gform_wrapper .gform_footer input[type="submit"],
.wp-block-contact-form button {
  background: var(--accent);
  color: #fff;
  border-radius: 999px;
  padding: 12px 20px;
  font-weight: 700;
}

/* ========== Footer ========== */
footer {
  margin-top: 40px;
  background: #faf8f5;
  border-top: 1px solid var(--border);
}

.footer-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 28px 20px;
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 18px;
  align-items: start;
  color: var(--muted);
}

.footer-inner p {
  margin: 0;
}

.footer-name {
  color: var(--charcoal);
  font-weight: 800;
  margin-bottom: 6px !important;
}

.footer-contact,
.footer-social {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-contact {
  font-style: normal;
}

.footer-inner a {
  color: var(--charcoal);
  font-weight: 700;
}
.footer-inner a:hover { color: var(--accent); }

/* ========== Utilities ========== */
.lead { font-size: var(--fs-500); color: var(--muted); }
.muted { color: var(--muted); }
.surface { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-md); box-shadow: var(--shadow-1); }
.center { text-align: center; }
.spacer-16 { height: 16px; }
.spacer-24 { height: 24px; }
.max-700 { max-width: 700px; }

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

/* Large tablets */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; padding: 32px; }
  .service-grid { grid-template-columns: repeat(2, 1fr); }
  nav .menu ul { gap: 16px; }
}

/* Tablets / big phones */
@media (max-width: 768px) {
  header { padding: 12px 0; }
  .header-inner { grid-template-columns: 1fr; gap: 10px; }
  header img { max-height: 56px; }
  header h1 { font-size: 1.4rem; }

  nav .menu ul {
    justify-content: flex-start;
    gap: 10px;
    flex-wrap: wrap;
  }

  .container { margin: 20px auto; }
  .wp-block-heading,
  .container h1.wp-block-heading { font-size: var(--fs-700); }
  .container h2.wp-block-heading { font-size: 1.25rem; }
  .footer-inner { grid-template-columns: 1fr; }
  .contact-hero { padding: 54px 20px 28px; }
  .contact-shell { grid-template-columns: 1fr; }
  .contact-details-panel,
  .contact-form-panel { padding: 26px; }
  .contact-field-grid { grid-template-columns: 1fr; }

  .service-grid { grid-template-columns: 1fr; }
  .hero h1 { font-size: clamp(1.8rem, 6vw, 2.4rem); }
}

/* Small phones */
@media (max-width: 480px) {
  .section { padding: 20px; }
  .button, .wp-block-button__link, button { width: 100%; text-align: center; }
  .hero-cta { gap: 10px; }
  .footer-inner { grid-template-columns: 1fr; }
  .contact-hero h1 { font-size: 2.2rem; }
  .contact-hero p { font-size: var(--fs-400); }
  .contact-details-panel,
  .contact-form-panel { padding: 22px; }
  .sierra-contact-form button { width: 100%; }
}

/* ========== WordPress-specific tweaks ========== */

/* Align WP block headings consistently */
.wp-block-heading:is(h1, h2, h3) { font-weight: 800; }

/* WP nav current states (varies by theme) */
.current_page_item > a,
.current-menu-item > a,
.menu-item.current-menu-item > a {
  background: var(--accent);
  color: #fff !important;
}

/* WP block buttons */
.wp-block-button .wp-block-button__link {
  border-radius: 999px;
  padding: 12px 22px;
}

/* WP columns spacing */
.wp-block-columns { gap: 18px; }
.wp-block-column { padding: 10px; }

/* WP images rounded style */
.wp-block-image img { border-radius: var(--radius-md); box-shadow: var(--shadow-1); }

/* ========== Optional: subtle animated underline for inline text links ========== */
a.inline {
  background-image: linear-gradient(var(--accent), var(--accent));
  background-size: 0% 2px;
  background-position: 0 100%;
  background-repeat: no-repeat;
  transition: background-size 0.25s ease;
}
a.inline:hover { background-size: 100% 2px; }

/* ========== Optional: breadcrumb / small nav ========== */
.breadcrumb {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  font-size: 0.9rem;
  color: var(--muted);
}
.breadcrumb a { color: var(--charcoal); }
.breadcrumb a:hover { color: var(--accent); }



/* ===== Section wrapper (Group block) ===== */
.wp-block-group__inner-container.wp-block-group-is-layout-constrained {
  background: #ffffff;
  border: 1px solid #e7e3dc;
  border-radius: 14px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
  padding: 28px;
  max-width: 900px; /* keeps it tight and readable */
  margin: 24px auto;
}

/* Heading */
.wp-block-group__inner-container.wp-block-group-is-layout-constrained .wp-block-heading {
  margin: 0 0 14px;
  font-size: 1.6rem;
  font-weight: 800;
  letter-spacing: 0.2px;
  color: #2b2d2f;
}

/* ===== Featured list (3 items) ===== */
.wp-block-group__inner-container.wp-block-group-is-layout-constrained .wp-block-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(3, 1fr);
}

.wp-block-group__inner-container.wp-block-group-is-layout-constrained .wp-block-list li {
  position: relative;
  background: #fff;
  border: 1px solid #e7e3dc;
  border-radius: 12px;
  padding: 25px;
  color: #2b2d2f;
  font-weight: 700;
  letter-spacing: 0.2px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.05);
  transition: transform 0.12s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

/* Icon badge (accessible, non-blue accent) */
/*.wp-block-group__inner-container.wp-block-group-is-layout-constrained .wp-block-list li::before {
  content: "";
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 30% 30%, rgba(255,255,255,0.7), rgba(255,255,255,0)),
    linear-gradient(135deg, #2e7d6c, #b26e2f);
  box-shadow: 0 2px 6px rgba(0,0,0,0.12);
}*/
.wp-block-list img.emoji {
    font-size: 100px;
    margin-right: 30px;
    display: block !important;
    margin-left: auto;
    margin-right: auto;
    text-align: center !important;
    align-items: center;
    margin-right: auto !important;
    margin-left: auto !important;
    margin-bottom: 20px !important;
}
ul.wp-block-list li {
    font-size: 22px;
    text-align: center;
    line-height: 27px;
}
ul.wp-block-list {
    margin-top: 35px !important;
    margin-bottom: 35px !important;
}
.wp-block-buttons.is-content-justification-center.is-layout-flex.wp-container-core-buttons-is-layout-16018d1d.wp-block-buttons-is-layout-flex {
    margin-left: auto !important;
    margin-right: auto !important;
    display: block !important;
    width: fit-content;
}

/* Optional: subtle checkmark inside badge */
.wp-block-group__inner-container.wp-block-group-is-layout-constrained .wp-block-list li::after {
  content: "✓";
  position: absolute;
  left: 22px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 14px;
  font-weight: 900;
  color: #fff;
}

/* Hover */
.wp-block-group__inner-container.wp-block-group-is-layout-constrained .wp-block-list li:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  border-color: #ddd4c8;
}

/* ===== Buttons row ===== */
.wp-block-group__inner-container.wp-block-group-is-layout-constrained .wp-block-buttons {
  display: flex;
  justify-content: flex-start;
  margin-top: 16px;
}

.wp-block-group__inner-container.wp-block-group-is-layout-constrained .wp-block-button__link {
  display: inline-block;
  background: rgb(159, 133, 85); /* deep green accent */
  color: #fff;
  border: none;
  border-radius: 999px;
  padding: 12px 22px;
  font-weight: 800;
  letter-spacing: 0.3px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  transition: background 0.25s ease, box-shadow 0.25s ease, transform 0.08s ease;
}

.wp-block-group__inner-container.wp-block-group-is-layout-constrained .wp-block-button__link:hover {
  background: #256c5d;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

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

/* Large tablets */
@media (max-width: 1024px) {
  .wp-block-group__inner-container.wp-block-group-is-layout-constrained .wp-block-list {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Tablets and big phones */
@media (max-width: 768px) {
  .wp-block-group__inner-container.wp-block-group-is-layout-constrained {
    padding: 22px;
    margin: 20px auto;
  }
  .wp-block-group__inner-container.wp-block-group-is-layout-constrained .wp-block-heading {
    font-size: 1.4rem;
  }
  .wp-block-group__inner-container.wp-block-group-is-layout-constrained .wp-block-list {
    grid-template-columns: 1fr;
  }
}

/* Small phones */
@media (max-width: 480px) {
  .wp-block-group__inner-container.wp-block-group-is-layout-constrained .wp-block-button__link {
    width: 100%;
    text-align: center;
  }
}


.wp-block-list li a {
  display: block;
  color: #2b2d2f;
  text-decoration: none;
}
.wp-block-list li a:hover { text-decoration: none; }
.wp-block-list li:nth-child(1)::before { background: linear-gradient(135deg, #2e7d6c, #8fb39f); }
.wp-block-list li:nth-child(2)::before { background: linear-gradient(135deg, #b26e2f, #e1b183); }
.wp-block-list li:nth-child(3)::before { background: linear-gradient(135deg, #7a5e3a, #d4c3a4); }





/* Full parallax video header */
#headervideo {
    position: relative;
    height: 100vh;              /* full screen height – change to 80vh if you want it shorter */
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    margin-top: 0;              /* removes gap if your nav is fixed */
}

/* The actual video – parallax effect */
.video-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: translate(-50%, -50%);
    z-index: -2;
    min-width: 100vw;
    min-height: 100vh;
}

/* Dark overlay – makes text pop (adjust opacity to taste) */
.video-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0, 0, 0, 0.45);   /* darker = more professional */
    z-index: -1;
}

/* Text & button styling */
.header-content {
    position: relative;
    z-index: 2;
    padding: 2rem;
    max-width: 900px;
}

.header-content h1 {
    font-size: 4.5rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    text-shadow: 0 4px 15px rgba(0,0,0,0.6);
    letter-spacing: 1px;
}

.header-content .tagline {
    font-size: 1.8rem;
    margin-bottom: 2rem;
    font-weight: 300;
    text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

.cta-button {
    display: inline-block;
    background: rgb(159, 133, 85);               /* bright red – change to your brand color */
    color: #fff;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: bold;
    text-decoration: none;
    box-shadow: 0 8px 25px rgba(230,57,70,0.4);
    transition: all 0.3s ease;
}

.cta-button:hover {
    background: #c1121f;
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(230,57,70,0.5);
}

/* Mobile adjustments */
@media (max-width: 768px) {
    .header-content h1 { font-size: 3rem; }
    .header-content .tagline { font-size: 1.4rem; }
    .cta-button { padding: 0.9rem 2rem; font-size: 1.1rem; }
}



/* Page Header / Hero Section - applies to all pages */
.page-header,
.hero-section,
.entry-header,          /* Common in many themes */
.wp-block-cover,        /* If using Cover block as hero */
.site-main > section:first-child {   /* Fallback - first major section */
    background: linear-gradient(135deg, 
        rgba(167, 138, 88, 0.12) 0%, 
        rgba(255, 245, 220, 0.08) 50%, 
        rgba(167, 138, 88, 0.05) 100%
    );
    background-color: #ffffff; /* Fallback white */
    padding: 80px 20px 100px;
    text-align: center;
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid rgba(167, 138, 88, 0.25);
        margin-bottom: 25px;
}

/* Subtle decorative underline accent */
.page-header::after,
.hero-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 4px;
    background: rgb(167, 138, 88);
    border-radius: 2px;
}

/* Main heading styling */
.page-header h1,
.page-header h2,
.entry-title,
.hero-section h1,
.hero-section h2 {
    font-size: 3rem;
    font-weight: 700;
    color: #2c2c2c;
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.page-header h1::after,
.hero-section h1::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 0;
    width: 60%;
    height: 3px;
    background: linear-gradient(to right, rgb(167, 138, 88), transparent);
    border-radius: 3px;
}

/* Subtitle / description text */
.page-header p,
.hero-section p,
.entry-header p {
    font-size: 1.3rem;
    color: #555;
    max-width: 720px;
    margin: 0 auto 2rem;
    line-height: 1.6;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .page-header,
    .hero-section {
        padding: 60px 15px 80px;
    }
    
    .page-header h1,
    .hero-section h1 {
        font-size: 2.4rem;
    }
    .slider-arrow{
      display:none;
    }
}
.tquote{
      max-width: 75%;
    margin-left: auto;
    margin-right: auto;
}


.services3 .wp-block-group-is-layout-constrained{
  display: flex;
    flex-direction: row;
    padding:0px;
}
.services3 .service-card .is-layout-constrained{
 display:flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}
