/* Fonts */
/* inter */
@font-face {
  font-display: swap; 
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400;
  src: url('/assets/fonts/inter-regular.woff2') format('woff2'); 
}

@font-face {
  font-display: swap; 
  font-family: 'Inter';
  font-style: normal;
  font-weight: 500;
  src: url('/assets/fonts/inter-semibold.woff2') format('woff2'); 
}

@font-face {
  font-display: swap; 
  font-family: 'Inter';
  font-style: normal;
  font-weight: 600;
  src: url('/assets/fonts/inter-bold.woff2') format('woff2'); 
}

/* visible-only-on-focus skip link */
.skip-link{
  position:absolute;
  left:-9999px;
  top:auto
}

.skip-link:focus{
  left:1rem;
  top:1rem;
  z-index:10000;
  padding:.6rem 1rem;
  background:#000;
  color:#fff;
  border-radius:.375rem
}

/* visually hidden but screen-reader readable */
.visually-hidden{
  position:absolute!important;
  width:1px;
  height:1px;
  padding:0;
  margin:-1px;
  overflow:hidden;
  clip:rect(0 0 0 0);
  white-space:nowrap;
  border:0
}

/* always show a focus style */
:focus-visible{
  outline:2px solid currentColor;
  outline-offset:3px
}

/* reduced motion */
@media (prefers-reduced-motion: reduce){
  *{
    animation-duration:0.01ms !important;
    animation-iteration-count:1 !important;
    transition-duration:0.01ms !important;
    scroll-behavior:auto !important
  }
}

/* Global Styles */
html {
  font-size: 16px; 
}

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

body, html {
  margin: 0;
  overflow-x: hidden;
  padding: 0;
  font-family: var(--bodyFont);
  font-weight: 400;
  color: var(--textColour1);
  scroll-behavior: smooth;
  background-color: var(--bgColour1);
}

section {
  padding: var(--sectionPadding)
}

.container {
  max-width: var(--maxW);
  margin: 0 auto;
}

p {
  line-height: 1.6;
}

h1, h2 {
  font-family: var(--headerFont);
  font-weight: 600;
}

h1 {
  font-size: clamp(3rem, 3.4vw, 4rem);
}

h2 {
  font-size: clamp(1.9rem, 2.5vw, 2.3rem);
}

h3 {
  font-size: clamp(1.1rem, 1.8vw, 1.2rem);
}

.brand-accent {
  color: var(--mainBrandColour);
}

.sub-heading {
  color: var(--mainBrandColour);
}

/* Icon styles */
.icon {
  fill: var(--mainBrandColour);
  width: 30px;
  height: 30px;
}

.icon-small {
  width: 20px;
  height: 20px;
}

.icon-brand-colour {
  fill: var(--mainBrandColour);
}

/* Icon Circle */
.icon-circle {
  width: 55px;
  height: 55px;
  background: #7e7e7e17;
  color: var(--mainBrandColour);
  border-radius: 50%;
  font-size: clamp(1.2rem, 2.5vw, 1.5rem);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--spaceXs) auto;
}

/* Button Styles */
/* Button CSS */
/* Button CSS */
.cta-button {
  padding: 1rem 1.4rem;
  text-decoration: none;
  font-weight: 400;
  font-size: 1rem;
  display: inline-block;
  transition: all 0.3s;
  font-family: var(--headerFont);
  position: relative;
  background-color: var(--mainBrandColour);
  border: none;
  color: white;
  cursor: pointer;
}

.sub-btn {
  box-sizing: border-box;
  background-color: rgba(230, 230, 230, 0);
  border: 2px solid var(--mainBrandColour);
  color: var(--mainBrandColour);
  font-weight: 400;
}

/* Animations */
/* Animations */

/* Sweep To Top */
.sweep-to-top {
  display: inline-block;
  vertical-align: middle;
  transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  position: relative;
  transition-property: color;
  transition-property: color;
  transition-duration: 0.3s;
  transition-duration: 0.3s;
}

.sweep-to-top:before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #00805b;
  transform: scaleY(0);
  transform: scaleY(0);
  transform-origin: 50% 100%;
  transform-origin: 50% 100%;
  transition-property: transform;
  transition-property: transform;
  transition-duration: 0.3s;
  transition-duration: 0.3s;
  transition-timing-function: ease-out;
  transition-timing-function: ease-out;
}
.sweep-to-top:hover, .sweep-to-top:focus, .sweep-to-top:active {
  color: white;
}
.sweep-to-top:hover:before, .sweep-to-top:focus:before, .sweep-to-top:active:before {
  transform: scaleY(1);
  transform: scaleY(1);
}

/* Hover up */
.hover-up {
  transition: box-shadow 0.3s;
  transition: 
    transform 0.3s ease, 
    box-shadow 0.3s ease;
  will-change: transform;
}

.hover-up:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

/* ==== Nav1 Component Styles Start ==== */
/* ==== Nav1 Component Styles Start ==== */
#nav1-navigation {
  position: fixed;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  background: var(--bgColour2);
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  padding: 0.1rem 0.8rem;
}

.nav1-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav1-inner {
  display: flex;
  flex-direction: row;
  align-items: center;
}

.nav1-ul li a {
  font-family: var(--bodyFont);
  font-weight: 500;
  color: var(--textColour1);
  text-decoration: none;
  transition: color 0.3s;
}

.nav1-logo {
  height: 60px;
  justify-content: center;
  padding: 0;
  width: auto;
  z-index: 10;
  display: block;
}

.nav1-logo img {
  height: 100%;
  object-fit: contain;
  width: auto;
}

.nav1-toggle {
  background: var(--bgColour2);
  border: none;
  border-radius: 4px;
  width: 42px;
  height: 42px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  z-index: 10;
  transition: transform 0.6s;
}

.nav1-toggle-box {
  width: 24px;
  height: 18px;
  position: relative;
}

.nav1-line {
  width: 100%;
  height: 2px;
  background: black;
  position: absolute;
  left: 0;
  transition: all 0.3s;
  border-radius: 1px;
}

.nav1-line:nth-child(1) { top: 0; }
.nav1-line:nth-child(2) { top: 8px; }
.nav1-line:nth-child(3) { bottom: 0; }

/* Animate to "X" */
.nav1-toggle.active .nav1-line:nth-child(1) {
  transform: rotate(45deg);
  top: 8px;
}
.nav1-toggle.active .nav1-line:nth-child(2) {
  opacity: 0;
}
.nav1-toggle.active .nav1-line:nth-child(3) {
  transform: rotate(-45deg);
  bottom: auto;
  top: 8px;
}

/* Menu */
.nav1-ul-wrapper {
  width: 100%;
  background-color: var(--bgColour2);
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 0.4s;
  overflow: hidden;
}

.nav1-ul {
  list-style: none;
  padding: 1.5rem 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  font-size: 0.9rem;
}

.nav1-ul a:hover {
  color: var(--mainBrandColour);
  transition: color 0.3s;
}

.nav1-ul .active {
  color: var(--mainBrandColour);
}

/* Button */
.header-btn {
  display: none;
}

.cta-button.main-btn.zoom-out {
  font-size: 1rem;
  font-weight: 600;
  background: var(--mainBrandColour);
  border-radius: 0px;
  text-decoration: none;
}

/* Show menu when active */
#nav1-navigation.nav1-active .nav1-ul-wrapper {
  transform: scaleY(1);
  transition-delay: 0.2s;
}

.nav1-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0.15); 
  opacity: 0;
  visibility: hidden;
  transition:
    transform 0.3s ease,
    opacity 0.4s ease 0.3s,      
    visibility 0.4s linear 0.6s;
  z-index: 90; 
  transform: scaleY(0);
  transform-origin: top;
}

.nav1-overlay.active {
  opacity: 1;
  visibility: visible;
  transform: scaleY(1);
  transition:
    transform 0.3s ease,
    opacity 0.3s ease,
    visibility 0s;
}

.icon-blue {
  fill: var(--mainBrandColour);
}

.nav1-ul-wrapper .header-btn {
  display: none;
}

.nav1-cta-button {
  background-color: var(--mainBrandColour);
  color: white;
  border-radius: 2px;
  text-decoration: none;
  font-size: 1.2rem;
  padding: 0.8rem 1rem;
}

/* Desktop Styles */
@media screen and (min-width: 1024px) {
  .nav1-toggle {
    display: none;
  }

  .nav1-ul-wrapper {
    transform: none !important;
    display: flex;
    align-items: center;
    height: auto;
  }

  .nav1-ul {
    flex-direction: row;
    gap: 1.5rem;
    padding: 0;
  }

  .header-btn {
    display: block;
  }
}

@media screen and (max-width: 1023px) {
    .nav1-ul-wrapper {
    width: 100%;
    height: auto;
    background-color: var(--bgColour2);
    transform: scaleY(0);
    transform-origin: top;
    transition: opacity .3s, transform .4s;
    overflow: hidden;
    position: absolute;
    box-sizing: border-box;
    padding-bottom: 1rem;
    left: 0;
    top: 58px;
  }

  .nav1-ul {
    list-style: none;
    padding: 1.5rem 0;
    margin: 0;
    max-height: 90vh;
    width: 100%;
    box-sizing: border-box;
    overflow: auto;
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .nav1-ul li {
    display: block;
    width: 100%;
    text-align: center;
  }

    .nav1-ul-wrapper .header-btn {
    display: flex;
    justify-content: center;
  }

  .nav1-ul-wrapper .header-btn .cta-button {
    margin-bottom: 1rem;
  }
}
/* ==== Nav1 Component Styles End ==== */
/* ==== Nav1 Component Styles End ==== */

/* ============================
   FINAL CTA
============================ */
#final-cta {
  background-color: var(--mainBrandColour);
  color: white;
  text-align: center;
}

#final-cta-heading {
  max-width: 50rem;
}

.final-cta-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--spaceSmmd);
}

#final-cta .cta-button {
  background-color: white;
  color: var(--mainBrandColour);
  font-weight: 500;
}

#final-cta .cta-button:hover {
  background-color: rgb(211, 211, 211);
}

/* footer1.css */
/* footer1 Component Styles Start */
/* footer1 Component Styles Start */
#site-footer {
  color: var(--textColour1);
  padding: 2.5rem 1rem;
  border-radius: 0 0 10px 10px;
  margin: 0 auto;
  background-color: var(--bgColour2);
}

.footer1-logo {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 2rem;
}

.brand-accent {
  color: var(--mainBrandColour);
  opacity: 1;
}

.footer1-description {
  font-size: 0.9rem;
  color: var(--textColour1);
  margin-bottom: 2rem;
  line-height: 1.4;
}

.footer-subline {
  max-width: 12rem;
  font-size: 0.85rem;
}

/* Columns */
.footer1-columns {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.footer1-columns h3 {
  font-size: 1rem;
  margin-bottom: 1rem;
  color: var(--mainBrandColour);
}

.footer1-links ul,
.footer1-contact ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer1-links li,
.footer1-contact li {
  font-size: 0.9rem;
  margin-bottom: 0.75rem;
  color: var(--textColour1);
  display: flex;
  gap: .5rem;
  align-items: center;
}

.footer1-contact .icon {
  height: 20px;
  width: 20px;
  transition: fill 0.5s;
}

.footer1-socials .icon:hover {
  fill: #00805b;
  transition: fill 0.5s;
}

footer a {
  color: var(--textColour1);
  text-decoration: none;
  transition: color 0.5s, fill 0.5s;
}

footer a:hover {
  color: var(--mainBrandColour);
  transition: color 0.5s;
}

/* Bottom Row */
.footer1-bottom {
  border-top: 1px solid #333;
  padding-top: 1.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer1-copy {
  font-size: 0.75rem;
  color: var(--textColour1);
}

.footer1-socials a {
  margin-left: 1rem;
  font-size: 1rem;
  transition: color 0.3s;
}

.footer1-socials a:first-child {
  margin-left: 0;
}

.footer1-socials a:hover {
  color: var(--mainBrandColour);
  transition: color 0.3s;
}

@media (max-width: 425px) {
  .footer1-columns {
    flex-direction: column;
    justify-content: center;
  }
}
/* footer1 Component Styles End */
/* footer1 Component Styles End */

.reveal {
  opacity: 0;
  transform: translateY(24px);
  will-change: opacity, transform;
  transition-delay: 0.3s;
  transition:
    opacity 0.7s ease-out,
    transform 0.7s ease-out,
    box-shadow 0.6s;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
  transition:
    opacity 0.7s ease-out,
    transform 0.7s ease-out,
    box-shadow 0.6s;
}