/*
 Theme Name:     Divi Child Theme
 Theme URI:      https://www.elegantthemes.com/gallery/Divi/
 Description:    Divi Child Theme
 Author:         Nitchy
 Author URI:     https://nitchy.ie
 Template:       Divi
 Version:        5.x
*/

@import url("/wp-content/themes/Divi/style.css");
@import url("/wp-content/themes/Divi Child/style-form-19.css");
@import url("/wp-content/themes/Divi Child/style-form-7.css");
/* Custom styles go below this line
-------------------------------------------------------------- */

/*text styles*/
a{
  color: #0E2244;
  font-family: new-hero, sans-serif !important;
  
}
body,
body p,
body .et_pb_module{
	font-family: new-hero, sans-serif !important;
}

h1,h2,h3,h4,h5,h6{
  color:  #0E2244;
  font-family: new-hero, sans-serif !important;
  /*word-wrap: break-word;*/
}

h1{
  font-size: 95px;
  font-weight: 800;
  line-height: 105px;
}

h2{
  font-size: 62px;
  font-weight: 800;
  line-height: 62px;
}

h3{
font-size: 32px;
font-weight: 400;

}
h4{
font-size: 28px;
font-weight: 400;
}
h5{
font-size: 26px;
font-weight: 400;
}
h6{
font-size: 24px;
font-weight: 400;
}

@media (max-width: 980px) {
  h1 { font-size: 62px;  line-height: 1.1; }
  h2 { font-size: 42px;  line-height: 1.1; }
  h3 { font-size: 26px; }
  h4 { font-size: 22px; }
  h5 { font-size: 20px; }
  h6 { font-size: 18px; }
  p  { font-size: 20px;  line-height: 1.5; }
  ul { font-size: 20px; }
}

@media (max-width: 640px) {
  h1 { font-size: 42px;  line-height: 1.1; }
  h2 { font-size: 32px;  line-height: 1.15; }
  h3 { font-size: 22px; }
  h4 { font-size: 20px; }
  h5 { font-size: 18px; }
  h6 { font-size: 18px; }
  p  { font-size: 18px;  line-height: 1.6; }
  ul { font-size: 18px; }
}

.subhead{
  font-weight: 800;
  line-height: 62px;
}
:root {
    --et_global_heading_font: new-hero, sans-serif !important;
}

p{
  color:  #0E2244;
  font-size: 24px;
  font-family: new-hero, sans-serif;
  font-weight: 400;
  line-height: 34px;
  word-wrap: break-word;
}
ul{
	 color:  #0E2244;
  font-size: 24px;
  font-family: new-hero, sans-serif;
  font-weight: 400;
  line-height: 1.8em;
  word-wrap: break-word;
}
li{
	line-height: 1.8em;
}

.center{
  text-align: center;
}
.underline{
  text-decoration: underline;
}

.cat-tag{
  font-size:10px !important;
}

.et_pb_breadcrumbs--current .et_pb_breadcrumbs--breadcrumb{
  font-family: new-hero, sans-serif !important;
}
/* COLOURS */

.orange-bg { background-color: #E35205; }   
.navy-bg   { background-color: #0E2244; }
.green-bg  { background-color: #00C389; }
.white-bg  { background-color: #ffffff; }
.grey-bg   { background-color: #696D70; }
.light-grey-bg { background-color: #F6F6F6; }

/* Text color utilities (can still be used globally) */

.orange     { color: #E35205; }
.navy       { color: #0E2244; }
.green      { color: #00C389; }
.white      { color: #ffffff; }
.grey       { color: #696D70; }
.light-grey { color: #F6F6F6; }

/* ================
   Base Button Reset
   ================= */

button {
  border: none;
  background: none;
  padding: 0;
  font: inherit;
  cursor: pointer;
}

/* =====================
   Core Button Structure
   ===================== */

.button-main {
  /* Configurable variables (defaults) */
  --btn-bg: transparent;
  --btn-text: #0E2244;
  --btn-outline: transparent;

  --btn-bg-hover: #0E2244;
  --btn-text-hover: #ffffff;
  --btn-outline-hover: #0E2244;

  padding: 16px 26px;
  border-radius: 10px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 12px;

  font-size: 22px;
  font-family: "new-hero", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  font-weight: 700;
  line-height: 1;

  background-color: var(--btn-bg);
  color: var(--btn-text);

  outline-width: 4px;
  outline-style: solid;
  outline-color: var(--btn-outline);
  outline-offset: -2px;

  text-decoration: none;
}
.button-main::after {
  content: "";
  width: 12px;
  height: 12px;
  border-right: 4px solid currentColor;
  border-top: 4px solid currentColor;
  transform: rotate(45deg);
  display: inline-block;
  margin-left: 12px;
}

/* Optional text-only variant (no outline / bg) */
.button-textonly {
    font-size: 22px;
    font-family: "new-hero", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
    font-weight: 700;
    line-height: 1;
  --btn-bg: transparent;
  --btn-text: inherit;
  --btn-outline: transparent;
}
.button-textonly::after {
  content: "";
  width: 12px;
  height: 12px;
  border-right: 4px solid currentColor;
  border-top: 4px solid currentColor;
  transform: rotate(45deg);
  display: inline-block;
  margin-left: 12px;
}

/* Icon inside button - inherits currentColor */
.button-icon {
  width: 16px;
  height: 16px;
  border-radius: 4px;
  transform: rotate(-45deg);
  border: 2px solid currentColor;
}

/* =====================
   Color / Style Variants
   ===================== */
/*white filled*/
.button-fill-white{
  --btn-bg: #ffffff;
  --btn-text: #0E2244;
  --btn-outline: transparent;

  /* Hover: outline */
  --btn-bg-hover: transparent;
  --btn-text-hover: #ffffff;
  --btn-outline-hover: #0E2244;
}
/* white – OUTLINE */
.button-outline-white {
  --btn-bg: transparent;
  --btn-text: #ffffff;
  --btn-outline: #ffffff;

  /* Hover: filled orange */
  --btn-bg-hover: #ffffff;
  --btn-text-hover: #0E2244;
  --btn-outline-hover: #0E2244;
}


/* ORANGE – FILLED */
.button-fill-orange {
  --btn-bg: #E35205;
  --btn-text: #ffffff;
  --btn-outline: transparent;

  /* Hover: outline / text orange, bg transparent */
  --btn-bg-hover: transparent;
  --btn-text-hover: #E35205;
  --btn-outline-hover: #E35205;
}

/* ORANGE – OUTLINE */
.button-outline-orange {
  --btn-bg: transparent;
  --btn-text: #E35205;
  --btn-outline: #E35205;

  /* Hover: filled orange */
  --btn-bg-hover: #E35205;
  --btn-text-hover: #ffffff;
  --btn-outline-hover: #E35205;
}

/* NAVY – FILLED */
.button-fill-navy {
  --btn-bg: #0E2244;
  --btn-text: #ffffff;
  --btn-outline: transparent;

  --btn-bg-hover: transparent;
  --btn-text-hover: #0E2244;
  --btn-outline-hover: #0E2244;
}

/* NAVY – OUTLINE */
.button-outline-navy {
  --btn-bg: transparent;
  --btn-text: #0E2244;
  --btn-outline: #0E2244;

  --btn-bg-hover: #0E2244;
  --btn-text-hover: #ffffff;
  --btn-outline-hover: #0E2244;
}

/* GREEN – FILLED */
.button-fill-green {
  --btn-bg: #00C389;
  --btn-text: #0E2244;
  --btn-outline: transparent;

  --btn-bg-hover: transparent;
  --btn-text-hover: #00C389;
  --btn-outline-hover: #00C389;
}

/* GREEN – OUTLINE */
.button-outline-green {
  --btn-bg: transparent;
  --btn-text: #00C389;
  --btn-outline: #00C389;

  --btn-bg-hover: #00C389;
  --btn-text-hover: #0E2244;
  --btn-outline-hover: #00C389;
}

/*right spacing when two buttons are inline*/
.right-space{
	margin-right:10px; 
	margin-bottom:10px;
}
.inspiration-button {
  position: absolute;
  bottom: -40px;
  left: 30px;
  z-index: 11;
}


/*DESKTOP header*/
.site-logo {
  width: 200px;
}

.logo-container {
  flex-shrink: 0;
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 0px;
  box-sizing: border-box;
  position: relative;
  z-index: 10;
}


/* HAMBURGER BUTTON (container) */
.hamburger {
  position: relative;
  z-index: 25;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;

  width: 62px;
  height: 62px;
  padding: 0;

  border-radius: 10px;
  background: #FFF;
  box-shadow: 0 0 24px rgba(0,0,0,0.25);
  border: none;
  cursor: pointer;
}

/* The three lines */
.hamburger-line {
  position: absolute;
  left: 14px;
  right: 14px;
  height: 3px;
  background: #0E2244;
  border-radius: 999px;
  transition:
    transform 0.24s ease,
    opacity 0.18s ease;
}

/* Top / middle / bottom line positions */
.hamburger-line:nth-child(1) {
  top: 17px;
}

.hamburger-line:nth-child(2) {
  top: 50%;
  transform: translateY(-50%);
}

.hamburger-line:nth-child(3) {
  bottom: 17px;
}

/* MORPH TO X WHEN MENU IS OPEN */
.hamburger.is-open{
  box-shadow:none;
}
.hamburger.is-open .hamburger-line:nth-child(1) {
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
}

.hamburger.is-open .hamburger-line:nth-child(2) {
  opacity: 0;
}

.hamburger.is-open .hamburger-line:nth-child(3) {
  bottom: auto;
  top: 50%;
  transform: translateY(-50%) rotate(-45deg);
}



/* MENU WRAPPER – absolutely positioned so it doesn't displace logo/hamburger */
.menu-horizontal {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 0;
  display: flex;
  align-items: center;
  z-index: 15;
  background: transparent;
  pointer-events: none;
}

/* MENU BAR */
.menu-items-container {
  display: flex;
  width: 1280px;
  height: 72px;
  padding-left: 50px;
  padding-right: 84px;
  margin-top: 0;
  justify-content: flex-start;
  align-items: center;
  border-radius: 10px;
  background: #FFF;
  box-shadow: 0 0 24px 0 rgba(0, 0, 0, 0.25);
  position: relative;
  z-index: 20;
  pointer-events: auto;

  /* GSAP starting state */
  transform-origin: right center;
  transform: scaleX(0);
  opacity: 0;
}



.menu-item  {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-right: 50px;
  color: #0E2244;
  font-family: new-hero, sans-serif;
  font-size: 22px;
  font-weight: 400;
  line-height: 22px;
}

.getaquote {
  margin-right: 12px;
}

.menu-icon-container {
  width: 72px;
  text-align: center;
  background: transparent;
  border: none;
  cursor: pointer;
  color: #0E2244;
}

/* Optional: lock scroll when menu open */
body.guardian-menu-open {
  overflow: hidden;
}

.getaquote a{
color: white !important;
font-size: 22px;
font-family: new-hero, sans-serif;
font-weight: 700;
word-wrap: break-word;
text-box-trim: trim-both;
text-box-edge: cap alphabetic;
text-align: center;
display: flex;
padding: 20px 30px;
justify-content: center;
align-items: center;
gap: 10px;
border-radius: 10px;
background: var(--Brand-guardian-orange, #E35205);
}

.getaquote:hover a{
color: #E35205 !important;
outline: 4px #EA580C solid;
outline-offset: -4px;
display: inline-flex;
background:#fff;
}

/*dropdown*/

.menu-item.has-dropdown {
  position: relative; /* important for positioning the submenu */
}

.dropdown-menu {
  position: absolute;
  top: calc(100% + 4px);  /* just below the parent item */
  left: 0;                /* align with left edge of the parent item */
  padding: 12px 24px;
  border-radius: 10px;
  background: #FFF;
  box-shadow: 0 0 24px rgba(0,0,0,0.25);
margin-top:50px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;

  width: max-content;

  /* hidden state (we'll toggle a class with JS) */
  opacity: 0;
  transform: translateY(-6px);
  pointer-events: none;
  visibility: hidden;

  transition:
    opacity 0.18s ease-out,
    transform 0.18s ease-out,
    visibility 0s linear 0.18s; /* wait to hide visibility until fade finishes */
}

/* When JS adds .is-open, the menu becomes visible */
.dropdown-menu.is-open {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
  visibility: visible;
  transition-delay: 0s;
}




.sub-menu-item {
text-align: left;
align-self: stretch;
padding-top: 21px;
padding-bottom: 21px;
justify-content: flex-start;
align-items: center;
gap: 10px;
display: inline-flex;
cursor: pointer;
}

.sub-menu-text {
text-align: left;
text-box-trim: trim-both;
text-box-edge: cap alphabetic;

color: var(--Elements-typography-body, #0E2244);
font-size: 22px;
font-family: new-hero, sans-serif;
font-weight: 400;
line-height: 22px;
word-wrap: break-word;
}

.other-products-trigger i {
  transition: transform 0.25s ease;
}



/* Smooth chevron rotation for both dropdowns */
.other-products-trigger i,
.about-trigger i {
  display: inline-block;
  transition: transform 0.25s ease;
}

/* Rotate chevron when dropdown is visible */
.menu-item.has-dropdown:hover i.fa-chevron-right,
.menu-item.has-dropdown:focus-within i.fa-chevron-right {
  transform: rotate(90deg);
}

/* Hide back button on desktop */
.dropdown-back {
  display: none;
}
/*MOBILE header*/
/* =========================================
   MOBILE MENU (overlay + vertical stacking)
   ========================================= */
@media (max-width: 980px) {

  .header-container {
    padding:  0px;
  }

  .site-logo {
    width: 160px;
  }

  /* Make nav a full-screen overlay container */
  .menu-horizontal {
    position: fixed;
    inset: 0;
    top: 0;
    transform: none;
    z-index: 9999;
    pointer-events: none;
    overflow: hidden;
    visibility: hidden;
    opacity: 0;
    transition: visibility 0s linear 0.25s, opacity 0.2s ease-out;
  }

  .menu-horizontal.is-open {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
    transition-delay: 0s;
  }

  /* Slide-in panel */
  .menu-items-container {
    position: absolute;
    inset: 0;
    margin-top: 0;
    padding: 96px 24px 32px;
    width: 100vw;
    height: 100vh;

    overflow-y: auto;

    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;

    background: #ffffff;
    box-shadow: none;

    transform: translateX(100%);
    opacity: 0;
    transition:
      transform 0.25s ease-out,
      opacity 0.2s ease-out;
  }

  .menu-horizontal.is-open .menu-items-container {
    transform: translateX(0);
    opacity: 1;
  }

  /* Hamburger sits in the flex row — stays above the slide-in panel */
  .hamburger {
    position: relative;
    z-index: 10000;
    flex-shrink: 0;
  }

  /* Menu items full width, bigger tap targets */
  .menu-item,
  .getaquote {
    width: 100%;
    padding-right: 0;
    margin: 12px 0; /* Even spacing between all items */
    text-align: left; /* Force left alignment */
  }

  .menu-item a,
  .getaquote a {
    display: block;
    width: 100%;
    font-size: 20px;
    text-align: left; /* Force left alignment */
    padding: 12px 0; /* Padding for tap target */
  }

  /* Dropdowns become inline accordions */
  .menu-item.has-dropdown {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .menu-item.has-dropdown > a {
   display: flex;
    align-items: center;
    justify-content: space-between;
   width: 100%; 
    text-align: left;
  }

  .menu-item.has-dropdown i.fa-chevron-right {
    margin-left: 8px;
    transition: transform 0.25s ease;
  }

  /* Dropdown menu styles for mobile */
  .dropdown-menu {
   position: fixed;
    inset: 0;
    padding: 96px 24px 32px;
    background: #ffffff;
    z-index: 10001; /* Above main menu */
    width: 100%; 
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    box-shadow:none;

    /* Hidden by default - off to the right */
    transform: translateX(100%);
    opacity: 0;
    pointer-events: none;
    visibility: hidden;
    transition:
      transform 0.3s ease-out,
      opacity 0.3s ease-out,
      visibility 0s linear 0.3s;
  }

  .dropdown-menu.is-open {
   transform: translateX(0);
    opacity: 1;
    pointer-events: auto;
    visibility: visible;
    transition-delay: 0s;
  }
 /* Back button for submenu - show on mobile */
  .dropdown-back {
    display: flex !important;
    align-items: center;
    gap: 12px;
    width: 100%;
    padding: 12px 0;
    margin-bottom: 24px;
    font-size: 20px;
    color: #0E2244;
    cursor: pointer;
    border: none;
    background: transparent;
    text-align: left;
    font-family: new-hero, sans-serif;
  }

  .dropdown-back i {
    transition: transform 0.25s ease;
  }

  .dropdown-back:active i {
    transform: translateX(-4px);
  }

  /* Submenu items - even spacing */
  .dropdown-menu .sub-menu-item {
    width: 100%;
    padding: 0;
    margin: 12px 0; /* Same spacing as main menu */
    text-align: left;
  }

  .dropdown-menu .sub-menu-text {
    text-align: left;
  }

  .dropdown-menu .sub-menu-text a {
    display: block;
    width: 100%;
    padding: 12px 0;
    text-align: left;
  }

  /* Get a quote button */
  .getaquote {
    margin-right: 0;
    width: 100%;
  }

  .getaquote a {
    justify-content: center;
    text-align: center;
  }

}


/*hero sections*/

/*heading and text*/
.hero-text-container{
width: 820px;
  padding-top: 110px;
  padding-bottom: 110px;
  flex-direction: column;
  justify-content: center;
  align-items: center; /*the text is centered inside the box*/
  gap: 50px;
  display: inline-flex;

}
/*stc- Sidekick Text Container*/
.sidekick-text-container {
width: 700px;
padding-top: 110px;
padding-bottom: 110px;
padding-right: 85px;
position: relative;
background: white;
flex-direction: column;
justify-content: space-between;
align-items: flex-start;
gap: 50px;
display: inline-flex;
}

.stc-item {
  margin-bottom: 20px;
}

.sidekick-arrow-container{
  left: 590.57px;
  top: 40px;
  position: absolute;
  justify-content: flex-start;
  align-items: center;
  gap: 20px;
  display: inline-flex;
}

/*sliders*/

/*cta sections*/

/* CTA Banner - "Discover how..." */
.cta-banner {
  width: 100%;
  max-width: 1380px;
  padding: 50px 60px;
  border-radius: 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
}

/* Text content */
.cta-banner__content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.cta-banner__heading {
  font-size: 62px;
  font-family: new-hero, sans-serif;
  font-weight: 800;
  line-height: 1.1;
  margin: 0;
}

.cta-banner__text {
  font-size: 28px;
  font-family: new-hero, sans-serif;
  font-weight: 400;
  line-height: 1.3;
  margin: 0;
}


/* Responsive */
@media (max-width: 980px) {
  .cta-banner {
    flex-direction: column;
    padding: 40px 30px;
    text-align: center;
    align-items: center;
  }

  .cta-banner__heading {
    font-size: 42px;
  }

  .cta-banner__text {
    font-size: 22px;
  }

  .cta-banner__button {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 640px) {
  .cta-banner {
    padding: 30px 20px;
  }

  .cta-banner__heading {
    font-size: 32px;
  }

  .cta-banner__text {
    font-size: 18px;
  }
}
/*forms*/

/* =====================
   GRAVITY FORMS - Quote Form Styling
   ===================== */

/* Form header section */
.quote-form-header {
  text-align: center;
  margin-bottom: 60px;
}

.quote-form-header h1,
.quote-form-header h2 {
  margin-bottom: 30px;
}

.quote-form-intro {
  max-width: 1100px;
  margin: 0 auto;
}

/* Responsive form header */
@media (max-width: 980px) {
  .quote-form-header {
    margin-bottom: 40px;
  }

  .quote-form-header h1,
  .quote-form-header h2 {
    font-size: 42px;
    margin-bottom: 20px;
  }
}

@media (max-width: 640px) {
  .quote-form-header {
    margin-bottom: 30px;
  }

  .quote-form-header h1,
  .quote-form-header h2 {
    font-size: 32px;
    margin-bottom: 16px;
  }
}

/* Form container - use very specific selector to override Gravity Forms defaults */
.gform_wrapper.gform-theme form .gform_body .gform_fields,
.gform_wrapper.gform-theme .gform_fields {
  display: grid !important;
  grid-template-columns: 1fr 1fr !important;
  grid-auto-rows: minmax(64px, auto) !important;
  gap: 20px !important;
  max-width: 1380px;
  margin: 0 auto;
  align-items: stretch !important;
  list-style: none !important;
}

/* Override any Gravity Forms responsive grid that might be interfering */
.gform_wrapper.gform-theme .gform_fields.gform-grid-row {
  display: grid !important;
  grid-template-columns: 1fr 1fr !important;
}

.gform_wrapper.gform-theme .gfield.gform-grid-col {
  grid-column: unset !important;
  grid-row: unset !important;
}

/* Remove default margins from all fields */
.gform_wrapper.gform-theme .gfield {
  margin: 0 !important;
  padding: 0 !important;
}

/* Left column - row 1: Name */
#field_1_11 {
  grid-column: 1 !important;
  grid-row: 1 !important;
}

/* Left column - row 2: Phone */
#field_1_12 {
  grid-column: 1 !important;
  grid-row: 2 !important;
}

/* Left column - row 3: Email */
#field_1_13 {
  grid-column: 1 !important;
  grid-row: 3 !important;
}

/* Left column - row 4: Postcode */
#field_1_14 {
  grid-column: 1 !important;
  grid-row: 4 !important;
}

/* Right column - row 1: Quote dropdown */
#field_1_7 {
  grid-column: 2 !important;
  grid-row: 1 !important;
  margin-bottom: 0 !important;
  align-self: start;
}

#field_1_7 .ginput_container {
  display: flex;
  align-items: flex-start;
}

/* Right column - rows 2-4: Message textarea (spans 3 rows) */
#field_1_9 {
  grid-column: 2 !important;
  grid-row: 2 / 5 !important;
  display: flex;
  flex-direction: column;
  margin-top: 0 !important;
}

/* Make message field fill available space */
#field_1_9 .ginput_container_textarea {
  flex: 1;
  display: flex;
  flex-direction: column;
}

#field_1_9 textarea {
  flex: 1 !important;
  height: 100% !important;
  min-height: 0 !important;
  box-sizing: border-box !important;
}

/* Consent checkbox - spans both columns at bottom */
#field_1_10 {
  grid-column: 1 / -1;
}

/* Hide main field labels (we'll use placeholders) */
.gform_wrapper.gform-theme .gfield_label,
.gform_wrapper.gform-theme legend.gfield_label {
  clip: rect(1px, 1px, 1px, 1px);
  position: absolute !important;
  height: 1px;
  width: 1px;
  overflow: hidden;
}

/* Show consent label */
.gform_wrapper.gform-theme .gfield_consent .gfield_label {
  position: static !important;
  clip: auto;
  height: auto;
  width: auto;
  overflow: visible;
}

/* Hide sublabels for complex fields */
.gform_wrapper.gform-theme .gform-field-label--type-sub {
  display: none !important;
}

/* Input field styling */
.gform_wrapper.gform-theme input[type="text"],
.gform_wrapper.gform-theme input[type="email"],
.gform_wrapper.gform-theme input[type="tel"],
.gform_wrapper.gform-theme select,
.gform_wrapper.gform-theme textarea {
  width: 100% !important;
  height: 64px !important;
  padding: 20px 24px !important;
  border: 2px solid #E0E0E0 !important;
  border-radius: 10px !important;
  font-family: new-hero, sans-serif !important;
  font-size: 20px !important;
  font-weight: 400 !important;
  color: #0E2244 !important;
  background: #fff !important;
  transition: border-color 0.3s ease !important;
  box-shadow: none !important;
  line-height: 1.2 !important;
}

.gform_wrapper.gform-theme input[type="text"]:focus,
.gform_wrapper.gform-theme input[type="email"]:focus,
.gform_wrapper.gform-theme input[type="tel"]:focus,
.gform_wrapper.gform-theme select:focus,
.gform_wrapper.gform-theme textarea:focus {
  outline: none !important;
  border-color: #00C389 !important;
  box-shadow: none !important;
}

/* Placeholder styling */
.gform_wrapper.gform-theme input::placeholder,
.gform_wrapper.gform-theme textarea::placeholder,
.gform_wrapper.gform-theme select::placeholder {
  color: #C4C4C4 !important;
  font-size: 20px !important;
  opacity: 1 !important;
}

/* Textarea specific - override height for message field */
.gform_wrapper.gform-theme textarea {
  height: auto !important;
  resize: vertical !important;
  padding: 20px 24px !important;
}

/* Message textarea should be exact height: 3 fields (64px each) + 2 gaps (20px each) = 232px */
#field_1_9 textarea {
  height: 232px !important;
  min-height: 232px !important;
  max-height: 232px !important;
}

/* Select dropdown */
.gform_wrapper.gform-theme select {
  appearance: none !important;
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L6 6L11 1' stroke='%23C4C4C4' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E") !important;
  background-repeat: no-repeat !important;
  background-position: right 24px center !important;
  padding-right: 50px !important;
  color: #0E2244 !important;
  height: 64px !important;
}

/* Style the first option as placeholder */
.gform_wrapper.gform-theme select option:first-child {
  color: #C4C4C4 !important;
}

.gform_wrapper.gform-theme select option:not(:first-child) {
  color: #0E2244 !important;
}

/* Checkbox for privacy policy */
.gform_wrapper.gform-theme .gfield_consent {
  margin-top: 20px;
}

.gform_wrapper.gform-theme .gfield_consent label {
  display: flex !important;
  align-items: center;
  gap: 12px;
  font-family: new-hero, sans-serif !important;
  font-size: 18px !important;
  color: #0E2244 !important;
  cursor: pointer;
}

.gform_wrapper.gform-theme input[type="checkbox"] {
  width: 24px !important;
  height: 24px !important;
  min-width: 24px !important;
  border: 2px solid #E0E0E0 !important;
  border-radius: 4px !important;
  cursor: pointer;
  margin: 0 !important;
}

/* Submit button - using existing button system */
.gform_wrapper.gform-theme .gform_footer {
  grid-column: 1 / -1;
  margin-top: 20px;
  padding: 0 !important;
}

.gform_wrapper.gform-theme input[type="submit"],
.gform_wrapper.gform-theme .gform_button {
  /* Reset default styles */
  border: none !important;
  background: none;
  padding: 0;
  font: inherit;
  cursor: pointer;

  /* Apply button-main styles */
  --btn-bg: #E35205;
  --btn-text: #ffffff;
  --btn-outline: transparent;

  --btn-bg-hover: transparent;
  --btn-text-hover: #E35205;
  --btn-outline-hover: #E35205;

  padding: 20px 40px !important;
  border-radius: 10px !important;
  display: inline-flex !important;
  justify-content: center;
  align-items: center;
  gap: 12px;

  font-size: 22px !important;
  font-family: "new-hero", system-ui, -apple-system, BlinkMacSystemFont, sans-serif !important;
  font-weight: 700 !important;
  line-height: 1 !important;

  background-color: var(--btn-bg) !important;
  color: var(--btn-text) !important;

  outline-width: 4px !important;
  outline-style: solid !important;
  outline-color: var(--btn-outline) !important;
  outline-offset: -4px !important;

  text-decoration: none;
  transition: all 0.25s ease !important;
  box-shadow: none !important;
}

/* Submit button arrow */
.gform_wrapper.gform-theme input[type="submit"]::after,
.gform_wrapper.gform-theme .gform_button::after {
  content: "" !important;
  width: 12px;
  height: 12px;
  border-right: 4px solid currentColor;
  border-top: 4px solid currentColor;
  transform: rotate(45deg);
  display: inline-block;
  margin-left: 12px;
}

.gform_wrapper.gform-theme input[type="submit"]:hover,
.gform_wrapper.gform-theme .gform_button:hover {
  background-color: var(--btn-bg-hover) !important;
  color: var(--btn-text-hover) !important;
  outline-color: var(--btn-outline-hover) !important;
}

/* Validation errors */
.gform_wrapper.gform-theme .gfield_error input,
.gform_wrapper.gform-theme .gfield_error textarea,
.gform_wrapper.gform-theme .gfield_error select {
  border-color: #E35205 !important;
}

.gform_wrapper.gform-theme .validation_message {
  color: #E35205 !important;
  font-size: 14px !important;
  margin-top: 8px;
  font-family: new-hero, sans-serif !important;
}

/* Hide the form heading if empty */
.gform_wrapper.gform-theme .gform_heading {
  display: none;
}

/* Complex field containers (name, address) should display as block */
.gform_wrapper.gform-theme .ginput_complex {
  display: block !important;
}

.gform_wrapper.gform-theme .ginput_complex .gform-grid-col {
  width: 100% !important;
  max-width: 100% !important;
  margin-bottom: 0 !important;
}

/* Force two-column layout on all screen sizes above mobile */
@media (min-width: 641px) {
  .gform_wrapper.gform-theme .gform_fields {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
  }
}

/* Responsive - Mobile */
@media (max-width: 640px) {
  .gform_wrapper.gform-theme form .gform_body .gform_fields,
  .gform_wrapper.gform-theme .gform_fields {
    grid-template-columns: 1fr !important;
    gap: 16px !important;
  }

  #field_1_11,
  #field_1_12,
  #field_1_13,
  #field_1_14,
  #field_1_7,
  #field_1_9,
  #field_1_10 {
    grid-column: 1 !important;
    grid-row: auto !important;
  }

  #field_1_9 {
    display: block !important;
  }

  #field_1_9 textarea {
    height: auto !important;
    min-height: 150px !important;
  }

  .gform_wrapper.gform-theme input[type="text"],
  .gform_wrapper.gform-theme input[type="email"],
  .gform_wrapper.gform-theme input[type="tel"],
  .gform_wrapper.gform-theme select,
  .gform_wrapper.gform-theme textarea {
    padding: 16px 20px !important;
    font-size: 18px !important;
  }

  .gform_wrapper.gform-theme textarea {
    min-height: 150px !important;
  }

  .gform_wrapper.gform-theme input[type="submit"],
  .gform_wrapper.gform-theme .gform_button {
    width: 100%;
    padding: 18px 30px !important;
    font-size: 20px !important;
  }
}

/*before and after*/
.beforeandafter{

}
/* Outer slider container */
.ba-slider {
  max-width: 800px;
  margin: 40px auto;
  font-family: inherit;
}

/* Image wrapper */
.ba-image-wrapper {
  position: relative;
  width: 100%;
  overflow: hidden;
}
/* BEFORE wrapper */
.ba-before-wrapper {
  position: relative;
  width: 100%;
  height: auto;
  z-index: 1;
}

/* Make the dark overlay */
.ba-before-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.2); /* 25% black, adjust as needed */
  pointer-events: none; /* slider still works fine */
  z-index: 2; 
}

/* AFTER sits above the overlay */
.ba-after-wrapper {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 3;

  /* existing clip-path setup will still work */
  clip-path: inset(0 100% 0 0);
}

/* Shared image styles – SAME for both */
.ba-img {
  display: block;
  width: 100%;
  height: auto;
  pointer-events: none;
  user-select: none;
}

/* BEFORE image – base layer */
.ba-img--before {
  position: relative;   /* stays in normal flow to define height */
  z-index: 1;
}

/* REVEALING after image */
.ba-after-wrapper {
  position: absolute;
  inset: 0;             /* top:0; right:0; bottom:0; left:0; */
  overflow: hidden;
  z-index: 2;

  /* Start fully hidden: clip everything except 0% from left */
  clip-path: inset(0 100% 0 0);
}

.ba-img--after {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;    /* or remove if you want no cropping */
}

/*begin changes*/
/* Remove default track */
.ba-range {
  -webkit-appearance: none;
  appearance: none;
  background: transparent;
  width: 80%;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 50%; /* vertical center */
  z-index: 4;
}

/* Hidden track */
.ba-range::-webkit-slider-runnable-track {
  background: transparent;
  height: 0;
}
.ba-range::-moz-range-track {
  background: transparent;
  height: 0;
}

/* SHARP CHEVRONS (same style as your button icons) */
:root {
  --chev-right: url("/wp-content/themes/Divi Child/img/left.svg");

  --chev-left: url("/wp-content/themes/Divi Child/img/right.svg");
}

/* CUSTOM THUMB — Webkit */
.ba-range::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 124px;
  height: 124px;
  border-radius: 50%;
  background: white;

  /* Chevrons inside */
  background-image: var(--chev-left), var(--chev-right);
  background-repeat: no-repeat;
  background-position:
  22px center,     /* left chevron spaced nicely */
    calc(100% - 22px) center;  /* right chevron spaced equally */

  cursor: pointer;

  /* Center vertically */
  margin-top: -62px;
}

/* CUSTOM THUMB — Firefox */
.ba-range::-moz-range-thumb {
  width: 124px;
  height: 124px;
  border-radius: 50%;
  background: white;

  background-image: var(--chev-left), var(--chev-right);
  background-repeat: no-repeat;
  background-position:
      left 32px center,
      right 32px center;

  cursor: pointer;
}


/*end cahnges*/



/* Labels */
.ba-labels {
  display: flex;
  justify-content: space-between;
  margin-top: 10px;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.ba-label {
  padding: 4px 8px;
  border-radius: 4px;
  background: rgba(0, 0, 0, 0.05);
}

.ba-label--left {
  align-self: flex-start;
}

.ba-label--right {
  align-self: flex-end;
}


/*pills*/

.pill{
  padding-left: 20px;
  padding-right: 20px;
  padding-top: 15px;
  padding-bottom: 15px;
  border-radius: 40px;
  justify-content: center;
  align-items: center;
  gap: 20px;
  display: inline-flex;
}
.pill-text{
  color: white;
  font-size: 20px;
  font-family: new-hero, sans-serif;
  font-weight: 500;
  word-wrap: break-word;
  text-box-trim: trim-both;
  text-box-edge: cap alphabetic;
}

/*tabs*/
.tab{
  padding: 14px 28px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  display: inline-flex;
  font-size: 18px;
  font-family: new-hero;
  font-weight: 500;
  line-height: 1.4;
  word-wrap: break-word;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.tab-left{
  border-top-left-radius: 10px;
  border-bottom-left-radius: 10px;
}

.tab-middle{

}

.tab-right{
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
}

/* Tab active state - colors controlled by data attributes via JavaScript */

/* Tabs wrapper - controls order */
.tabs-wrapper {
  display: flex;
  flex-direction: column;
  max-width: 1380px;
  margin: 0 auto;
}

/* Tab content (images) - appears first */
.tab-content {
  position: relative;
  width: 100%;
  order: 1;
  margin-bottom: 40px;
}

.tab-panel {
  display: none;
}

.tab-panel.active {
  display: block;
  animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.tab-panel img {
  width: 100%;
  height: auto;
  border-radius: 10px;
}

/* Tab container - appears below images */
.tab-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  order: 2;
}

@media (max-width: 980px) {
  .tab {
    padding: 10px 18px;
    font-size: 15px;
  }
}

@media (max-width: 640px) {
  .tab {
    padding: 8px 12px;
    font-size: 13px;
  }
}

/*faq toggles*/

.faq-container {
  width: 100%;
  max-width: 1380px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  width: 100%;
  border-radius: 10px;
  overflow: hidden;
}

.faq-question {
  width: 100%;
  padding: 40px 60px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  border: none;
  text-align: left;
  font-family: new-hero, sans-serif;
  font-size: 32px;
  font-weight: 700;
  line-height: 1.3;
  transition: all 0.3s ease;
}

.faq-question:hover {
  opacity: 0.9;
}

.faq-chevron {
  flex-shrink: 0;
  width: 12px;
  height: 12px;
  border-right: 4px solid currentColor;
  border-bottom: 4px solid currentColor;
  transform: rotate(-45deg);
  transition: transform 0.3s ease;
}

/* Rotate chevron when open */
.faq-item.is-open .faq-chevron {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
  padding: 0 60px;
}

.faq-item.is-open .faq-answer {
  max-height: 1000px;
  padding: 0 60px 40px 60px;
}

.faq-answer-text {
  font-family: new-hero, sans-serif;
  font-size: 24px;
  font-weight: 400;
  line-height: 1.5;
}

/* Responsive */
@media (max-width: 980px) {
  .faq-question {
    padding: 30px 40px;
    font-size: 26px;
  }

  .faq-answer {
    padding: 0 40px;
  }

  .faq-item.is-open .faq-answer {
    padding: 0 40px 30px 40px;
  }

  .faq-answer-text {
    font-size: 20px;
  }
}

@media (max-width: 640px) {
  .faq-question {
    padding: 24px 28px;
    font-size: 22px;
  }

  .faq-answer {
    padding: 0 28px;
  }

  .faq-item.is-open .faq-answer {
    padding: 0 28px 24px 28px;
  }

  .faq-answer-text {
    font-size: 18px;
  }

  .faq-chevron {
    width: 10px;
    height: 10px;
    border-right: 3px solid currentColor;
    border-bottom: 3px solid currentColor;
  }
}

/*horizontal image scroller*/

/*product carousel*/
.product-carousel {
  position: relative;
  width: 100%;
 /* max-width: 1600px;
  margin: 0 auto;
  padding: 0 110px;*/
}

.carousel-container {
  position: relative;
  width: 100%;
  overflow-x: clip;
  overflow-y: visible;
}

.carousel-track {
  display: flex;
  gap: 30px;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.carousel-slide {
  position: relative;
  min-width: 100%;
  height: 600px;
  flex-shrink: 0;
  opacity: 0.3;
  transform: scale(0.85) translateY(60px);
  transition: opacity 0.6s ease, transform 0.6s ease;
  overflow: visible;
}

/* Intro slide - narrower width */
.carousel-slide--intro {
  min-width: 40%;
  max-width: 60%;
  opacity: 1 !important;
  transform: scale(1) translateY(0) !important;
}

.carousel-slide.active {
  opacity: 1;
  transform: scale(1) translateY(0);
  z-index: 10;
}

/* Image container for each slide */
.slide-images {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

/* Individual images that fade */
.slide-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.slide-image.active {
  opacity: 1;
}

/* Intro slide content container - matches slide-images dimensions */
.slide-intro-content {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  text-align: left;
  padding: 60px;
  box-sizing: border-box;
  background: #ffffff;
}

.slide-intro-content h2 {
  color: #0E2244;
  font-size: 62px;
  font-family: new-hero, sans-serif;
  font-weight: 800;
  line-height: 1;
  margin: 0 0 20px 0;
}

.slide-intro-content h3 {
  color: #0E2244;
  font-size: 32px;
  font-family: new-hero, sans-serif;
  font-weight: 400;
  line-height: 1.3;
  margin: 0 0 30px 0;
  max-width: 800px;
}

.slide-intro-content p {
  color: #0E2244;
  font-size: 24px;
  font-family: new-hero, sans-serif;
  font-weight: 400;
  line-height: 1.4;
  margin: 0;
  max-width: 900px;
}

/* Title in bottom left */
.slide-title {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 10;
  color: #0E2244;
  font-size: 62px;
  font-family: new-hero, sans-serif;
  font-weight: 800;
  line-height: 1;
  background: #ffffff;
  padding: 20px 30px;
  margin: 0;
}

/* Navigation arrows */
.carousel-arrows {
  position: absolute;
  top: 20px;
  right: -120px;
  z-index: 20;
  display: flex;
  gap: 30px;
}

.carousel-arrow {
  width: 44px;
  height: 44px;
  background: transparent;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  position: relative;
}

.carousel-arrow:hover::before {
  border-color: #00C389;
}

/* Hide the SVG, use CSS chevrons instead */
.carousel-arrow svg {
  display: none;
}

/* CSS Chevron - Previous (left) */
.carousel-arrow--prev::before {
  content: "";
  width: 20px;
  height: 20px;
  border-left: 4px solid #0E2244;
  border-bottom: 4px solid #0E2244;
  transform: rotate(45deg);
  display: block;
  transition: border-color 0.3s ease;
}

/* CSS Chevron - Next (right) */
.carousel-arrow--next::before {
  content: "";
  width: 20px;
  height: 20px;
  border-right: 4px solid #0E2244;
  border-top: 4px solid #0E2244;
  transform: rotate(45deg);
  display: block;
  transition: border-color 0.3s ease;
}

/* Responsive */
@media (max-width: 980px) {
  .product-carousel {
    padding: 0 60px;
  }

  .carousel-slide {
    height: 400px;
  }

  .carousel-slide--intro {
    min-width: 45%;
    max-width: 400px;
  }

  .slide-intro-content {
    padding: 40px;
  }

  .slide-intro-content h2 {
    font-size: 42px;
  }

  .slide-intro-content h3 {
    font-size: 26px;
  }

  .slide-intro-content p {
    font-size: 20px;
  }

  .slide-title {
    font-size: 42px;
    bottom: 0;
    left: 0;
  }

  .carousel-arrows {
    top: 15px;
    right: 10px;
    gap: 20px;
  }

  .carousel-arrow {
    width: 20px;
    height: 20px;
  }

  .carousel-arrow--prev::before,
  .carousel-arrow--next::before {
    width: 14px;
    height: 14px;
    border-width: 3px;
  }
}

@media (max-width: 640px) {
  .product-carousel {
    padding: 0 40px;
  }

  .carousel-slide {
    height: 300px;
  }

  .carousel-slide--intro {
    min-width: 100%;
    max-width: 100%;
  }

  .slide-intro-content {
    padding: 30px;
  }

  .slide-intro-content h2 {
    font-size: 32px;
  }

  .slide-intro-content h3 {
    font-size: 20px;
  }

  .slide-intro-content p {
    font-size: 18px;
  }

  .slide-title {
    font-size: 32px;
    bottom: 0;
    left: 0;
  }

  .carousel-arrows {
    top: 12px;
    right: 10px;
    gap: 15px;
  }

  .carousel-arrow {
    width: 18px;
    height: 18px;
  }

  .carousel-arrow--prev::before,
  .carousel-arrow--next::before {
    width: 12px;
    height: 12px;
    border-width: 3px;
  }
}

/*trust logos*/

/*testimonial*/
.testimonial-box{
  align-self: stretch;
  padding-top: 100px;
  padding-bottom: 100px;
  padding-left: 50px;
  padding-right: 100px;
  border-radius: 10px;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 13px;
  display: iblock;
  background-color:#F6F6F6;
  color: var(--Brand-guardian-navy-blue, #0E2244);
  font-size: 32px;
  font-family: new-hero;
  font-style: italic;
  font-weight: 400;
  word-wrap: break-word;
  line-height:1.5em;

}
.testimonials-text-box{
  margin-left:20px;
}
.personsname {
  color: var(--Brand-guardian-navy-blue, #0E2244);
  font-size: 20px;
  margin-top:20px;
  /*margin-left:20px;*/
  font-family:new-hero;
  font-weight: 400;
  line-height: 1.5em;
  word-wrap: break-word;
}

/*timelinesections*/

/* =====================
   COMPANY TIMELINE
   ===================== */

.timeline-container {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
}

/* Navigation Arrows */
.nav-arrow {
    position: absolute;
    top: 60px;
    background: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.nav-arrow:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transform: scale(1.05);
}

.nav-arrow:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.nav-arrow-left {
    left: 20px;
}

.nav-arrow-right {
    right: 20px;
}

/* Pagination Dots */
.pagination-dots {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 30px;
    padding: 20px 0;
}

.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #d0d0d0;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background-color: #E35205;
    width: 12px;
    height: 12px;
}

.dot:hover {
    background-color: #ff8c5a;
}

/* Timeline Wrapper */
.timeline-wrapper {
    overflow: hidden;
    width: 100%;
    padding: 0 80px;
}

.timeline-cards {
    display: flex;
    gap: 30px;
    transition: transform 0.5s ease;
    padding: 20px 0;
}

/* Timeline Card */
.timeline-card {
    min-width: 600px;
    max-width: 600px;
    background:  #ffffff ;
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.timeline-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

/* Card Header */
.card-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
}

.card-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
}

.card-year {
    font-size: 42px;
    font-family: new-hero, sans-serif;
    font-weight: 800;
    color: #E35205;
    letter-spacing: -1px;
    line-height: 1;
}

/* Card Content */
.card-title {
    font-size: 22px;
    font-family: new-hero, sans-serif;
    font-weight: 700;
    color: #0E2244;
    margin-bottom: 20px;
    line-height: 1.3;
}

.card-description {
    font-size: 15px;
    font-family: new-hero, sans-serif;
    font-weight: 400;
    color: #696D70;
    line-height: 1.6;
    margin-bottom: 15px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .timeline-wrapper {
        padding: 0 60px;
    }

    .timeline-card {
        min-width: 320px;
        max-width: 320px;
        padding: 30px;
    }

    .card-year {
        font-size: 36px;
    }

    .card-title {
        font-size: 20px;
    }

    .card-description {
        font-size: 14px;
    }

    .nav-arrow {
        width: 36px;
        height: 36px;
    }

    .nav-arrow-left {
        left: 10px;
    }

    .nav-arrow-right {
        right: 10px;
    }
}

@media (max-width: 480px) {
    .timeline-wrapper {
        padding: 0 50px;
    }

    .timeline-card {
        min-width: 280px;
        max-width: 280px;
        padding: 25px;
    }
}

/*benefits scroll section*/
.benefits-scroll-section {
  width: 100%;
  /*padding: 110px 0;*/
}

.benefits-container {
  max-width: 100%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.6fr 1.4fr;
  gap: 60px;
  align-items: start;
  padding: 0 60px;
}

/* Left column - scrolling text content */
.benefits-text-column {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.benefit-item {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 30px;
  padding: 60px 0;
  opacity: 0.3;
  transition: opacity 0.6s ease;
}

.benefit-item.active {
  opacity: 1;
}

.benefit-item .pill {
  width: fit-content;
}

.benefit-item h2 {
  margin: 0;
}

.benefit-item p {
  margin: 0;
}

.benefit-item .button-main {
  width: fit-content;
}

/* Right column - sticky image container */
.benefits-image-column {
  position: sticky;
  top: 110px;
  height: calc(100vh - 220px);
  display: flex;
  align-items: center;
  justify-content: center;
}

.benefits-image-container {
  position: relative;
  width: 100%;
  aspect-ratio: 3 / 2; /* 1500x1000 aspect ratio */
  max-height: 100%;
 /* border-radius: 10px;*/
  overflow: hidden;
}

.benefit-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.8s ease;
  /*border-radius: 10px;*/
}

.benefit-image.active {
  opacity: 1;
}
.benefit-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
/* Responsive */
@media (max-width: 980px) {
  .benefits-container {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 0 0;
  }

  .benefits-image-column {
    position: relative;
    top: 0;
    height: 60vh;
    max-height: 500px;
    min-height: 350px;
    order: -1;
    width: 100%;
  }

  .benefits-image-container {
    width: 100%;
    height: 100%;
    aspect-ratio: auto;
  }

  /* Horizontal scrolling container for text */
  .benefits-text-column {
    display: flex;
    flex-direction: row;
    gap: 0;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none; /* Firefox */
    padding: 0 40px;
  }

  .benefits-text-column::-webkit-scrollbar {
    display: none; /* Chrome, Safari */
  }

  .benefit-item {
    min-height: auto;
    min-width: 100%;
    width: 100%;
    flex-shrink: 0;
    padding: 40px 20px;
    scroll-snap-align: start;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: 24px;
    opacity: 1; /* All items visible on mobile */
  }

  .benefit-item:first-child {
    padding-top: 40px;
  }
}

@media (max-width: 640px) {
  .benefits-scroll-section {
    padding: 60px 0;
  }

  .benefits-container {
    padding: 0 0;
    gap: 30px;
  }

  .benefits-image-column {
    height: 50vh;
    max-height: 400px;
    min-height: 280px;
  }

  .benefits-text-column {
    padding: 0 20px;
  }

  .benefit-item {
    gap: 20px;
    padding: 30px 20px;
  }

  .benefit-item h2 {
    font-size: 42px;
  }

  .benefit-item p {
    font-size: 18px;
  }
}

/*footer*/

/* Hide Divi's default footer */
#main-footer {
  display: none !important;
}

.guardian-footer {
  width: 100%;
  background: #0E2244;
  padding: 60px 80px;
}

.guardian-footer-container {
  max-width: 1600px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 300px 1fr auto;
  gap: 80px;
  align-items: start;
}

/* Logo section */
.guardian-footer-logo {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.guardian-footer-logo img {
  width: 180px;
  height: auto;
  filter: brightness(0) invert(1);
}

/* Navigation columns */
.guardian-footer-nav {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
}

.guardian-footer-nav-column h3 {
  color: #ffffff;
  font-size: 24px;
  font-family: new-hero, sans-serif;
  font-weight: 700;
  margin: 0 0 24px 0;
  line-height: 1.2;
}

.guardian-footer-nav-column ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.guardian-footer-nav-column ul li {
  margin: 0;
  padding: 0;
}

.guardian-footer-nav-column ul li a {
  color: #ffffff;
  font-size: 20px;
  font-family: new-hero, sans-serif;
  font-weight: 400;
  line-height: 1.4;
  text-decoration: none;
  transition: color 0.3s ease;
}

.guardian-footer-nav-column ul li a:hover {
  color: #00C389;
}

/* Social icons */
.guardian-footer-social {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.guardian-footer-social a {
  background: transparent;
  text-decoration: none;
}

.guardian-footer-social a i {
  font-size: 28px;
  line-height: 1;
  color: #ffffff !important;
  transition: color 0.3s ease;
}

/* Brand colours on hover */
.guardian-footer-social a[aria-label="Facebook"]:hover i  { color: #1877F2 !important; }
.guardian-footer-social a[aria-label="Instagram"]:hover i { color: #E1306C !important; }
.guardian-footer-social a[aria-label="LinkedIn"]:hover i  { color: #0A66C2 !important; }
.guardian-footer-social a[aria-label="YouTube"]:hover i   { color: #FF0000 !important; }

/* Responsive tablet */
@media (max-width: 980px) {
  .guardian-footer {
    padding: 50px 40px;
  }

  .guardian-footer-container {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .guardian-footer-nav {
    gap: 50px;
  }

  .guardian-footer-social {
    justify-self: start;
  }
}

/* Responsive mobile */
@media (max-width: 640px) {
  .guardian-footer {
    padding: 40px 24px;
  }

  .guardian-footer-container {
    gap: 40px;
  }

  .guardian-footer-nav {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .guardian-footer-nav-column h3 {
    font-size: 22px;
    margin-bottom: 20px;
  }

  .guardian-footer-nav-column ul {
    gap: 12px;
  }

  .guardian-footer-nav-column ul li a {
    font-size: 18px;
  }

  .guardian-footer-social {
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
  }

  .guardian-footer-social a i {
    font-size: 24px;
  }
}

/* Footer bottom bar */
.guardian-footer-bottom {
  grid-column: 1 / -1;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 24px;
  text-align: center;
}

.guardian-footer-bottom-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px 24px;
  margin-bottom: 12px;
}

.guardian-footer-bottom-links a {
  color: #ffffff;
  text-decoration: none;
  font-family: new-hero, sans-serif;
  font-size: 13px;
  opacity: 0.7;
  transition: opacity 0.2s ease;
}

.guardian-footer-bottom-links a:hover {
  opacity: 1;
}

.guardian-footer-copyright {
  color: #ffffff;
  font-size: 12px;
  opacity: 0.5;
  margin: 0;
}

/* =====================
   GHE SCROLL SLIDESHOW
   ===================== */

.ghe-scroll-slideshow {
  position: relative;
  width: 100%;
/*  max-width: 1380px;*/
  margin: 0 auto;
  /*padding: 60px 0;*/
  overflow: visible;
}

/* Pagination Dots */
/*.ghe-pagination {
  position: absolute;
  top: 40px;
  left: 0;
  z-index: 20;
  display: flex;
  gap: 12px;
  align-items: center;
}

.ghe-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #E0E0E0;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0;
}

.ghe-dot:hover {
  background: #00C389;
}

.ghe-dot.active {
  background: #0E2244;
  width: 16px;
  height: 16px;
}

/* Slides Container */
.ghe-slides-container {
  position: relative;
  width: 100%;
  min-height: 600px;
}

/* Individual Slide */
.ghe-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.6s ease, visibility 0.6s ease;
  pointer-events: none;
}

.ghe-slide.active {
  position: relative;
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

/* Content Wrapper - Overlapping Layout */
.ghe-content-wrapper {
  position: relative;
  width: 100%;
  display: grid;
  grid-template-columns: 0.6fr 1.4fr;
  gap: 0;
  align-items: end;
  padding-top: 80px;
    justify-content: flex-end;
}

/* Text Column - White Background with Z-index */
.ghe-text-column {
  position: relative;
  z-index: 10;
  display: flex;
  flex-direction: column;
  gap: 30px;
  background: #ffffff;
  justify-content: flex-end;
 /* padding: 60px;*/
 /* border-radius: 10px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.1);*/
  margin-right: -120px;
}

/* Navigation Arrows - Top Right of Text Column */
.ghe-arrows {
  position: absolute;
  top: 40px;
  right: 40px;
  z-index: 20;
  display: flex;
  gap: 20px;
}

.ghe-arrow {
  width: 44px;
  height: 44px;
  background: transparent;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  position: relative;
  padding: 0;
}

.ghe-arrow:hover .ghe-arrow-icon {
  border-color: #00C389;
}

/* CSS Chevron - Previous (left) */
.ghe-arrow--prev .ghe-arrow-icon {
  width: 20px;
  height: 20px;
  border-left: 4px solid #0E2244;
  border-bottom: 4px solid #0E2244;
  transform: rotate(45deg);
  display: block;
  transition: border-color 0.3s ease;
}

/* CSS Chevron - Next (right) */
.ghe-arrow--next .ghe-arrow-icon {
  width: 20px;
  height: 20px;
  border-right: 4px solid #0E2244;
  border-top: 4px solid #0E2244;
  transform: rotate(45deg);
  display: block;
  transition: border-color 0.3s ease;
}

.ghe-heading {
  color: #0E2244;
  font-family: new-hero, sans-serif;
  font-size: 62px;
  font-weight: 800;
  line-height: 1;
  margin: 0;
  /*padding-right: 100px;*/
}

/* Text Content - Fades in on scroll */
.ghe-text-content {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s ease 0.3s, transform 0.8s ease 0.3s;
}

.ghe-slide.active .ghe-text-content {
  opacity: 1;
  transform: translateY(0);
}

.ghe-text-content p {
  color: #0E2244;
  font-size: 24px;
  font-family: new-hero, sans-serif;
  font-weight: 400;
  line-height: 1.4;
  margin: 0 0 20px 0;
}

.ghe-text-content p:last-child {
  margin-bottom: 0;
}

/* Image Column - Behind Text Column */
.ghe-image-column {
  position: relative;
  width: 100%;
 /* border-radius: 10px;*/
  overflow: hidden;
  z-index: 5;
  /*margin-left: -120px;
  padding-left: 120px;*/
}

.ghe-image {
  width: 100%;
  height: auto;
  display: block;
 /*border-radius: 10px;
  opacity: 0;
  transform: scale(1.05);
  transition: opacity 0.8s ease 0.2s, transform 0.8s ease 0.2s;*/
}

.ghe-slide.active .ghe-image {
  opacity: 1;
  transform: scale(1);
}

/* Responsive - Tablet */
@media (max-width: 980px) {
  .ghe-scroll-slideshow {
    padding: 40px 20px;
  }

 /* .ghe-pagination {
    top: 30px;
    gap: 10px;
  }

  .ghe-dot {
    width: 10px;
    height: 10px;
  }

  .ghe-dot.active {
    width: 14px;
    height: 14px;
  }
*/
  .ghe-content-wrapper {
    grid-template-columns: 1fr;
    gap: 40px;
    padding-top: 60px;
  }

  .ghe-text-column {
    margin-right: 0;
    padding: 50px 40px;
  }

  .ghe-arrows {
    top: 30px;
    right: 30px;
    gap: 15px;
  }

  .ghe-arrow {
    width: 36px;
    height: 36px;
  }

  .ghe-arrow--prev .ghe-arrow-icon,
  .ghe-arrow--next .ghe-arrow-icon {
    width: 16px;
    height: 16px;
    border-width: 3px;
  }

  .ghe-heading {
    font-size: 42px;
    padding-right: 80px;
  }

  .ghe-text-content p {
    font-size: 20px;
  }

  .ghe-image-column {
    margin-left: 0;
    padding-left: 0;
  }
}

/* Responsive - Mobile */
@media (max-width: 640px) {
  .ghe-scroll-slideshow {
    padding: 30px 16px;
  }

  .ghe-pagination {
    top: 20px;
    gap: 8px;
  }

  .ghe-dot {
    width: 8px;
    height: 8px;
  }

  .ghe-dot.active {
    width: 12px;
    height: 12px;
  }

  .ghe-content-wrapper {
    gap: 30px;
    padding-top: 50px;
  }

  .ghe-text-column {
    padding: 40px 30px;
  }

  .ghe-arrows {
    top: 20px;
    right: 20px;
    gap: 12px;
  }

  .ghe-arrow {
    width: 32px;
    height: 32px;
  }

  .ghe-arrow--prev .ghe-arrow-icon,
  .ghe-arrow--next .ghe-arrow-icon {
    width: 14px;
    height: 14px;
    border-width: 3px;
  }

  .ghe-heading {
    font-size: 32px;
    padding-right: 0px;
  }

  .ghe-text-content p {
    font-size: 18px;
  }
}

/* =====================
   HOME HERO SWIPER CAROUSEL
   ===================== */

/* Wrapper - full viewport */
.hero-carousel-wrapper {
  position: relative;
  width: 100vw;
  height: 100vh;
  overflow: hidden;
}

/* Swiper container */
.hero-swiper {
  width: 100%;
  height: 100%;
}

/* Swiper wrapper */
.hero-swiper .swiper-wrapper {
  display: flex;
  align-items: center;
}

/* Swiper slide sizing - Full width */
.hero-swiper .swiper-slide {
  width: 100vw !important; /* Full viewport width */
  height: 100vh !important; /* Full viewport height */
  flex-shrink: 0;
  box-sizing: border-box;
}

/* Hero container - each slide's content */
.hero-container {
  position: relative;
  width: 100%;
  height: 100%; /* Take full height of slide */
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

/* Background image */
.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero-background img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  z-index: 1;
}

/* Overlay for background images */
.hero-background::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  z-index: 2;
  pointer-events: none;
}


/* Content container */
.hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  max-width: 900px;
  padding: 0 60px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
}

/* Logo */
.hero-logo {
  width: 200px;
  height: auto;
  margin-bottom: 20px;
}

/* Heading */
.hero-content h2 {
  color: #ffffff;
  font-size: 72px;
  font-weight: 800;
  line-height: 1.1;
  margin: 0;
}

/* Paragraph */
.hero-content p {
  color: #ffffff;
  font-size: 28px;
  line-height: 1.5;
  margin: 0;
  max-width: 700px;
}

/* Button container */
.hero-buttons {
  display: flex;
  gap: 20px;
  margin-top: 20px;
  flex-wrap: wrap;
  justify-content: center;
}

/* Swiper Navigation Buttons - Hidden */
.hero-swiper .swiper-button-prev,
.hero-swiper .swiper-button-next {
  display: none;
}

/* Swiper Pagination - Hidden */
.hero-swiper .swiper-pagination {
  display: none;
}

/* Responsive - Tablet */
@media (max-width: 980px) {
  .hero-swiper .swiper-slide {
    width: 100vw !important;
  }

  .hero-content {
    padding: 0 40px;
    gap: 24px;
  }

  .hero-logo {
    width: 160px;
    margin-bottom: 15px;
  }

  .hero-content h2 {
    font-size: 52px;
  }

  .hero-content p {
    font-size: 22px;
  }

  .hero-buttons {
    gap: 15px;
  }

  .hero-swiper .swiper-button-prev,
  .hero-swiper .swiper-button-next {
    width: 44px;
    height: 44px;
  }

  .hero-swiper .swiper-button-prev::after,
  .hero-swiper .swiper-button-next::after {
    font-size: 18px;
  }

  .hero-swiper .swiper-pagination {
    bottom: 40px;
  }
}

/* Responsive - Mobile */
@media (max-width: 640px) {
  .hero-swiper .swiper-slide {
    width: 100vw !important;
  }

  .hero-content {
    padding: 0 24px;
    gap: 20px;
  }

  .hero-logo {
    width: 120px;
    margin-bottom: 10px;
  }

  .hero-content h2 {
    font-size: 36px;
  }

  .hero-content p {
    font-size: 18px;
  }

  .hero-buttons {
    flex-direction: column;
    width: 100%;
    gap: 12px;
  }

  .hero-buttons .button-main {
    width: 100%;
    justify-content: center;
  }

  .hero-swiper .swiper-button-prev,
  .hero-swiper .swiper-button-next {
    width: 40px;
    height: 40px;
  }

  .hero-swiper .swiper-button-prev::after,
  .hero-swiper .swiper-button-next::after {
    font-size: 16px;
  }

  .hero-swiper .swiper-pagination {
    bottom: 30px;
  }

  .hero-swiper .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
  }

  .hero-swiper .swiper-pagination-bullet-active {
    width: 30px;
  }
}

/* =====================
   CERTIFIED INSTALLER SEARCH
   ===================== */

.installer-search-container {
  max-width: 1380px;
  margin: 0 auto;
  padding: 60px 40px;
}

.installer-search-header {
  text-align: center;
  margin-bottom: 50px;
}

.installer-search-header h2 {
  color: #0E2244;
  font-size: 62px;
  font-family: new-hero, sans-serif;
  font-weight: 800;
  line-height: 1.1;
  margin: 0 0 20px 0;
}

.installer-search-header p {
  color: #696D70;
  font-size: 24px;
  font-family: new-hero, sans-serif;
  font-weight: 400;
  line-height: 1.4;
  margin: 0;
}

/* Search Form */
.installer-search-form {
  max-width: 800px;
  margin: 0 auto 60px;
}

.search-input-wrapper {
  display: flex;
  gap: 16px;
  margin-bottom: 12px;
}

#installer-search-input {
  flex: 1;
  height: 64px;
  padding: 20px 24px;
  border: 2px solid #E0E0E0;
  border-radius: 10px;
  font-family: new-hero, sans-serif;
  font-size: 20px;
  font-weight: 400;
  color: #0E2244;
  background: #fff;
  transition: border-color 0.3s ease;
}

#installer-search-input:focus {
  outline: none;
  border-color: #00C389;
}

#installer-search-input::placeholder {
  color: #C4C4C4;
}

.search-button {
  height: 64px;
  padding: 20px 40px;
  border-radius: 10px;
  background: #E35205;
  color: #ffffff;
  font-size: 22px;
  font-family: new-hero, sans-serif;
  font-weight: 700;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 12px;
  outline: 4px solid transparent;
  outline-offset: -4px;
}

.search-button:hover {
  background: transparent;
  color: #E35205;
  outline-color: #E35205;
}

.search-button::after {
  content: "";
  width: 12px;
  height: 12px;
  border-right: 4px solid currentColor;
  border-top: 4px solid currentColor;
  transform: rotate(45deg);
  display: inline-block;
}

.search-help-text {
  color: #696D70;
  font-size: 16px;
  font-family: new-hero, sans-serif;
  text-align: center;
  margin-top: 8px;
}

/* Results Section */
.installer-search-results {
  margin-top: 60px;
}

.results-header {
  margin-bottom: 30px;
  text-align: center;
}

.results-count {
  color: #0E2244;
  font-size: 28px;
  font-family: new-hero, sans-serif;
  font-weight: 700;
}

.results-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(400px, 1fr));
  gap: 30px;
}

/* Installer Card */
.installer-card {
  background: #ffffff;
  border: 2px solid #E0E0E0;
  border-radius: 10px;
  padding: 30px;
  transition: all 0.3s ease;
}

.installer-card:hover {
  border-color: #00C389;
  box-shadow: 0 4px 24px rgba(0, 195, 137, 0.1);
}

.installer-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: #00C389;
  color: #ffffff;
  font-size: 16px;
  font-family: new-hero, sans-serif;
  font-weight: 600;
  border-radius: 40px;
  margin-bottom: 20px;
}

.installer-badge svg {
  width: 16px;
  height: 16px;
}

.installer-header {
  margin-bottom: 20px;
}

.installer-name {
  color: #0E2244;
  font-size: 32px;
  font-family: new-hero, sans-serif;
  font-weight: 700;
  line-height: 1.2;
  margin: 0 0 8px 0;
}

.installer-reg {
  color: #696D70;
  font-size: 18px;
  font-family: new-hero, sans-serif;
  font-weight: 400;
}

.installer-reg strong {
  color: #0E2244;
}

.installer-location {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #E0E0E0;
}

.location-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #0E2244;
  font-size: 20px;
  font-family: new-hero, sans-serif;
}

.location-item svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  fill: #00C389;
}

.installer-info {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.info-item {
  color: #696D70;
  font-size: 18px;
  font-family: new-hero, sans-serif;
}

.info-item strong {
  color: #0E2244;
}

/* Loading State */
.installer-search-loading {
  text-align: center;
  padding: 60px 20px;
}

.loading-spinner {
  width: 50px;
  height: 50px;
  border: 4px solid #E0E0E0;
  border-top-color: #00C389;
  border-radius: 50%;
  margin: 0 auto 20px;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

.installer-search-loading p {
  color: #696D70;
  font-size: 20px;
  font-family: new-hero, sans-serif;
}

/* Error State */
.installer-search-error {
  text-align: center;
  padding: 60px 20px;
}

.error-message {
  color: #E35205;
  font-size: 20px;
  font-family: new-hero, sans-serif;
  background: #FFF5F0;
  padding: 20px 30px;
  border-radius: 10px;
  border: 2px solid #E35205;
  display: inline-block;
}

/* Responsive - Tablet */
@media (max-width: 980px) {
  .installer-search-container {
    padding: 50px 30px;
  }

  .installer-search-header h2 {
    font-size: 42px;
  }

  .installer-search-header p {
    font-size: 20px;
  }

  .results-list {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .installer-card {
    padding: 24px;
  }

  .installer-name {
    font-size: 28px;
  }
}

/* Responsive - Mobile */
@media (max-width: 640px) {
  .installer-search-container {
    padding: 40px 20px;
  }

  .installer-search-header {
    margin-bottom: 40px;
  }

  .installer-search-header h2 {
    font-size: 32px;
  }

  .installer-search-header p {
    font-size: 18px;
  }

  .search-input-wrapper {
    flex-direction: column;
    gap: 12px;
  }

  #installer-search-input {
    height: 56px;
    padding: 16px 20px;
    font-size: 18px;
  }

  .search-button {
    width: 100%;
    height: 56px;
    justify-content: center;
    font-size: 20px;
  }

  .results-list {
    gap: 20px;
  }

  .installer-card {
    padding: 20px;
  }

  .installer-name {
    font-size: 24px;
  }

  .installer-reg,
  .location-item,
  .info-item {
    font-size: 16px;
  }
}






/*homepage hero ADZ*/
@view-transition {
    navigation: auto;
}



::view-transition-new(hero-image) {
    animation-duration: 0s;
    animation-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    object-fit: cover;
}

::view-transition-old(root),
::view-transition-new(root) {
    animation-duration: 0s;
}

* {
		box-sizing: border-box;
		margin: 0;
		padding: 0;
	}

	/* Hero Section */
	.hero {
		position: fixed;
		inset: 0;
		z-index: 10;
	}

	.hero.faded {
		opacity: 0;
		pointer-events: none;
	}

	.hero .panel {
		position: absolute;
		width: 100vw;
		height: 100vh;
		overflow: hidden;
	}

	.hero .panel > img {
		position: absolute;
		inset: 0;
		width: 100%;
		height: 100%;
		object-fit: cover;
		display: block;
		transform: scale(1.08) translateX(0%);
	}

	.hero .logo-img {
		position: static !important;
		width: auto !important;
		height: 60px !important;
		object-fit: contain !important;
		transform: none !important;
		filter: none !important;
	}

	.hero .inner {
		position: absolute;
		inset: 0;
		z-index: 2;
		display: grid;
		place-content: center;
    justify-items: center;
		text-align: center;
	}

	.hero .inner h1 {
		color: #fff;
		font-size: 60px;
	}

	.hero .panel-one {
		z-index: 1;
	}

	.hero .panel-two {
		z-index: 2;
		transition: clip-path .8s ease;
		pointer-events: none;
		clip-path: polygon(0 0%, 100% 0%, 100% 95%, 0% 65%) !important;
	}

	@media (min-width: 1366px) {
		.hero .panel-two {
			clip-path: polygon(-2% 0%, 100% 0%, 100% 100%, 35% 100%) !important;
		}
	}

	.hero .panel-two > img {
		filter: brightness(0.5);
	}

	.hero .panel-two .inner {
		pointer-events: auto;
	}

	.hero .panel > img {
		transition: 800ms ease all;
	}

	.hero.hovered .panel-two {
		clip-path: polygon(0% 0%, 100% 0%, 100% 35%, 0% 5%) !important;
	}

	@media (min-width: 1366px) {
		.hero.hovered .panel-two {
			clip-path: polygon(65% 0%, 100% 0%, 100% 100%, 102% 100%) !important;
		}
	}

	.hero .panel-two.hide {
		clip-path: polygon(100% 0%, 100% 0%, 100% 100%, 142% 100%) !important;
	}

	@media (max-width: 768px) {
		.hero .panel-two.hide {
			clip-path: polygon(0% 0%, 100% 0%, 100% 0%, 0% -30%) !important;
		}
	}

	@media (max-width: 768px) {
		.hero .panel-two {
			pointer-events: auto;
		}
	}

	.hero .panel-two.active {
		clip-path: polygon(-25% 0%, 100% 0%, 100% 100%, 0% 100%) !important;
	}

	@media (max-width: 768px) {
		.hero .panel-two.active {
			clip-path: polygon(0 0%, 100% 0%, 100% 130%, 0% 100%) !important;
		}
	}

	.hero .active .fadeOut {
		opacity: 0;
	}

	.hero .fadeOut {
		transition: opacity 400ms ease;
	}

	@media (max-width: 768px) {
		.hero .panel-two > img {
			transform: scale(1) translateY(0%);
		}

		.hero.hovered .panel-two > img {
			transform: scale(1) translateY(-15%);
		}

		.hero .panel-one > img {
			transform: scale(1) translateY(15%);
		}

		.hero.hovered .panel-one > img {
			transform: scale(1) translateY(0);
		}
	}

	@media (min-width: 768px) {
		.hero .panel-two > img {
			transform: scale(1) translateX(0%);
		}

		.hero.hovered .panel-two > img {
			transform: scale(1) translateX(15%);
		}

		.hero .panel-one > img {
			transform: scale(1) translateX(-15%);
		}

		.hero.hovered .panel-one > img {
			transform: scale(1) translateX(0);
		}
	}

	/* Content Sections */
	.hero .content {
		display: none;
		grid-template-columns: 1fr 1fr;
		min-height: 100vh;
		opacity: 0;
		transition: opacity 0.8s ease 0.8s;
	}

	.hero .content.active {
		display: grid;
	}

	.hero .content.visible {
		opacity: 1;
	}

	.hero .content img {
		width: 100%;
		height: 100%;
		object-fit: cover;
		display: block;
	}

	.hero .content > div {
		background: #fff;
		padding: 30px;
		display: flex;
		flex-direction: column;
		justify-content: flex-end;
		color: red;
	}

/*end ADZ code*/