/*--------------------------------------------------------------
# Font & Color Variables
# Help: https://bootstrapmade.com/color-system/
--------------------------------------------------------------*/
/* Fonts */
:root {
  --default-font: "DM Sans",  system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --heading-font: "Lato",  sans-serif;
  --nav-font: "DM Sans",  sans-serif;
}

/* Global Colors - The following color variables are used throughout the website. Updating them here will change the color scheme of the entire website */
:root { 
  --background-color: #faf3ed; /* Background color for the entire website, including individual sections */
  --default-color: #555555; /* Default color used for the majority of the text content across the entire website */
  --heading-color: #277579; /* Color for headings, subheadings and title throughout the website */
  --accent-color: #f0b656; /* Accent color that represents your brand on the website. It's used for buttons, links, and other elements that need to stand out */
  --surface-color: #ffffff; /* The surface color is used as a background of boxed elements within sections, such as cards, icon boxes, or other elements that require a visual separation from the global background. */
  --contrast-color: #ffffff; /* Contrast color for text, ensuring readability against backgrounds of accent, heading, or default colors. */
}

/* Nav Menu Colors - The following color variables are used specifically for the navigation menu. They are separate from the global colors to allow for more customization options */
:root {
  --nav-color: rgba(255, 255, 255, 0.7);  /* The default color of the main navmenu links */
  --nav-hover-color: #f0b656; /* Applied to main navmenu links when they are hovered over or active */
  --nav-mobile-background-color: #ffffff; /* Used as the background color for mobile navigation menu */
  --nav-dropdown-background-color: #ffffff; /* Used as the background color for dropdown items that appear when hovering over primary navigation items */
  --nav-dropdown-color: #555555; /* Used for navigation links of the dropdown items in the navigation menu. */
  --nav-dropdown-hover-color: #f0b656; /* Similar to --nav-hover-color, this color is applied to dropdown navigation links when they are hovered over. */
}

/* Color Presets - These classes override global colors when applied to any section or element, providing reuse of the sam color scheme. */

.light-background {
  --background-color: #faf3ed;
  --surface-color: #ffffff;
}

.dark-background {
  --background-color: #30ac9d;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --surface-color: #44cbbb;
  --contrast-color: #ffffff;
}

/* Smooth scroll */
:root {
  scroll-behavior: smooth;
}

/*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/
body {
  color: var(--default-color);
  background-color: var(--background-color);
  font-family: var(--default-font);
}

a {
  color: var(--accent-color);
  text-decoration: none;
  transition: 0.3s;
}

a:hover {
  color: color-mix(in srgb, var(--accent-color), transparent 25%);
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--heading-color);
  font-family: var(--heading-font);
}

/* PHP Email Form Messages
------------------------------*/
.php-email-form .error-message {
  display: none;
  background: #df1529;
  color: #ffffff;
  text-align: left;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.php-email-form .sent-message {
  display: none;
  color: #ffffff;
  background: #059652;
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.php-email-form .loading {
  display: none;
  background: var(--surface-color);
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
}

.php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid var(--accent-color);
  border-top-color: var(--surface-color);
  animation: php-email-form-loading 1s linear infinite;
}

@keyframes php-email-form-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {
  --background-color: #2c6861;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  color: var(--default-color);
  background-color: transparent !important;
  background: none !important;
  /* Some themes use 'background' instead of 'background-color' */
  padding: 15px 0;
  transition: all 0.5s;
  z-index: 997;
  position: absolute;
  /* This "lifts" the nav so it floats */
  top: 0;
  /* Stick it to the very top */
  left: 0;
  /* Stretch it from the left edge */
  right: 0;
  /* Stretch it to the right edge */
}

.header .logo {
  line-height: 1;
}

.header .logo img {
  max-height: 200px;
  margin-right: 8px;
  margin-left: 50px;
  margin-top:30px;
}

.header .logo h1 {
  font-size: 30px;
  margin: 0;
  font-weight: 700;
  color: var(--heading-color);
}

.header .btn-getstarted,
.header .btn-getstarted:focus {
  color: var(--contrast-color);
  background: var(--accent-color);
  font-size: 14px;
  padding: 28px 36px;
  margin: 0 30px 0 50px;
  border-radius: 4px;
  transition: 0.3s;
}

.header .btn-getstarted:hover,
.header .btn-getstarted:focus:hover {
  color: var(--contrast-color);
  background: color-mix(in srgb, var(--accent-color), transparent 15%);
}

@media (max-width: 1200px) {
  .header .logo {
    order: 1;
  }

  .header .btn-getstarted {
    order: 2;
    margin: 0 15px 0 0;
    padding: 20px 20px;
  }

  .header .navmenu {
    order: 3;
  }
}

.scrolled .header {
  box-shadow: 0px 0 18px rgba(0, 0, 0, 0.1);
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Navmenu - Desktop */
@media (min-width: 1200px) {
  .navmenu {
    margin-left: auto;
    padding: 0;
  }

  .navmenu ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
    justify-content: flex-end;
  }

  .navmenu li {
    position: relative;
  }

  .navmenu a,
  .navmenu a:focus {
    color: white;
    padding: 18px 15px 9px 15px;
    font-size: 20px;
    font-family: var(--nav-font);
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
  }

  .navmenu li:hover>a,
  .navmenu .active,
  .navmenu .active:focus {
    color: white;
  }

  .navmenu .active {
    border-bottom: 2px solid white;
  }

  .navmenu .dropdown ul {
    margin: 0;
    padding: 10px 0;
    background: var(--nav-dropdown-background-color);
    display: block;
    position: absolute;
    visibility: hidden;
    left: 14px;
    top: 130%;
    opacity: 0;
    border-radius: 4px;
    z-index: 99;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }

  .navmenu .dropdown ul li {
    min-width: 200px;
  }

  .navmenu .dropdown ul a {
    padding: 10px 20px;
    font-size: 15px;
    text-transform: none;
    color: var(--nav-dropdown-color);
  }

  .navmenu .dropdown ul a i {
    font-size: 12px;
  }

  .navmenu .dropdown ul a:hover,
  .navmenu .dropdown ul .active:hover,
  .navmenu .dropdown ul li:hover>a {
    color: var(--nav-dropdown-hover-color);
  }

  .navmenu .dropdown:hover>ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
  }

  .navmenu .dropdown .dropdown ul {
    top: 0;
    left: -90%;
    visibility: hidden;
  }

  .navmenu .dropdown .dropdown:hover>ul {
    opacity: 1;
    top: 0;
    left: -100%;
    visibility: visible;
  }
}

/* Navmenu - Mobile */
@media (max-width: 1199px) {
  .mobile-nav-toggle {
    color: var(--nav-color);
    font-size: 28px;
    line-height: 0;
    margin-right: 10px;
    cursor: pointer;
    transition: color 0.3s;
  }

  .navmenu {
    padding: 0;
    z-index: 9997;
  }

  .navmenu ul {
    display: none;
    list-style: none;
    position: absolute;
    inset: 60px 20px 20px 20px;
    padding: 10px 0;
    margin: 0;
    border-radius: 6px;
    background-color: var(--nav-mobile-background-color);
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-dropdown-color);
    padding: 10px 20px;
    font-family: var(--nav-font);
    font-size: 17px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: 0.3s;
    background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  }

  .navmenu a i:hover,
  .navmenu a:focus i:hover {
    background-color: var(--accent-color);
    color: var(--contrast-color);
  }

  .navmenu a:hover,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--nav-dropdown-hover-color);
  }

  .navmenu .active i,
  .navmenu .active:focus i {
    background-color: var(--accent-color);
    color: var(--contrast-color);
    transform: rotate(180deg);
  }

  .navmenu .dropdown ul {
    position: static;
    display: none;
    z-index: 99;
    padding: 10px 0;
    margin: 10px 20px;
    background-color: var(--nav-dropdown-background-color);
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    box-shadow: none;
    transition: all 0.5s ease-in-out;
  }

  .navmenu .dropdown ul ul {
    background-color: rgba(33, 37, 41, 0.1);
  }

  .navmenu .dropdown>.dropdown-active {
    display: block;
    background-color: rgba(33, 37, 41, 0.03);
  }

  .mobile-nav-active {
    overflow: hidden;
  }

  .mobile-nav-active .mobile-nav-toggle {
    color: #fff;
    position: absolute;
    font-size: 32px;
    top: 15px;
    right: 15px;
    margin-right: 0;
    z-index: 9999;
  }

  .mobile-nav-active .navmenu {
    position: fixed;
    overflow: hidden;
    inset: 0;
    background: rgba(33, 37, 41, 0.8);
    transition: 0.3s;
  }

  .mobile-nav-active .navmenu>ul {
    display: block;
  }
}

/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/
.footer {
  color: var(--default-color);
  background-color: var(--background-color);
  font-size: 14px;
  padding: 40px 0 0 0;
  position: relative;
}

.footer .icon {
  color: var(--accent-color);
  margin-right: 15px;
  font-size: 24px;
  line-height: 0;
}

.footer h4 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 15px;
}

.footer .address p {
  margin-bottom: 0px;
}

.footer .social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 50%);
  font-size: 16px;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  margin-right: 10px;
  transition: 0.3s;
}

.footer .social-links a:hover {
  color: var(--accent-color);
  border-color: var(--accent-color);
}

.footer .copyright {
  padding: 25px 0;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.footer .copyright p {
  margin-bottom: 0;
}

.footer .credits {
  margin-top: 5px;
  font-size: 13px;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  inset: 0;
  z-index: 999999;
  overflow: hidden;
  background: var(--background-color);
  transition: all 0.6s ease-out;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid #ffffff;
  border-color: var(--accent-color) transparent var(--accent-color) transparent;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: animate-preloader 1.5s linear infinite;
}

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 99999;
  background-color: var(--accent-color);
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
}

.scroll-top i {
  font-size: 24px;
  color: var(--contrast-color);
  line-height: 0;
}

.scroll-top:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
  color: var(--contrast-color);
}

.scroll-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Global Page Titles & Breadcrumbs
--------------------------------------------------------------*/
.page-title {
  color: var(--default-color);
  background-color: var(--background-color);
  position: relative;
}

.page-title .heading {
  padding: 80px 0;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.page-title .heading h1 {
  font-size: 38px;
  font-weight: 700;
}

.page-title nav {
  background-color: color-mix(in srgb, var(--default-color), transparent 95%);
  padding: 20px 0;
}

.page-title nav ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  margin: 0;
  font-size: 16px;
  font-weight: 600;
}

.page-title nav ol li+li {
  padding-left: 10px;
}

.page-title nav ol li+li::before {
  content: "/";
  display: inline-block;
  padding-right: 10px;
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

/*--------------------------------------------------------------
# Global Sections
--------------------------------------------------------------*/
section,
.section {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 60px 0;
  scroll-margin-top: 90px;
  overflow: clip;
}

@media (max-width: 1199px) {

  section,
  .section {
    scroll-margin-top: 66px;
  }
}

/*--------------------------------------------------------------
# Global Section Titles
--------------------------------------------------------------*/
.section-title {
  text-align: center;
  padding-bottom: 60px;
  position: relative;
}

.section-title h2 {
  font-size: 32px;
  font-weight: 300;
  margin-bottom: 15px;
}

.section-title p {
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
  width: 100%;
  min-height: 600px;
  position: relative;
  padding: 180px 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

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

.hero:before {
  content: "";
  background: color-mix(in srgb, var(--background-color), transparent 100%);
  position: absolute;
  inset: 0;
  z-index: 2;
}

.hero .container {
  position: relative;
  z-index: 3;
}

.hero h2 {
  margin: 0;
  font-size: 84px;
  font-weight: 700;
  font-family: "ohno-blazeface", sans-serif;
}

.hero p {
  margin: 10px 0 0 0;
  font-size: 24px;
  color: var(--heading-color);
}

.hero .btn-get-started {
  color: var(--default-color);
  font-weight: 400;
  font-size: 20px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 24px 48px;
  margin: 30px 30px 0 0;
  border-radius: 4px;
  transition: 0.5s;
  background-color:#f0b656;
}

.hero .btn-get-started:hover {
  color: var(--contrast-color);
  background: var(--accent-color);
  border-color: var(--accent-color);
}

@media (max-width: 768px) {
  .hero h2 {
    font-size: 32px;
  }

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

/* Specific fix for iPads and small laptops (around 1024px) */
@media (min-width: 992px) and (max-width: 1200px) {
  .hero {
    /* Push content further down to clear the header */
    padding-top: 260px !important; 
    /* Ensure the section is tall enough to hold the text */
    min-height: 700px; 
  }

  .hero h2 {
    /* Scale the 84px font down slightly so it doesn't take up as much vertical room */
    font-size: 64px; 
    line-height: 1.1;
  }
}

/* --- Tablet Fix (768px to 991px) --- */
@media (min-width: 768px) and (max-width: 991px) {
  .hero {
    /* More top buffer for the sticky header */
    padding-top: 240px !important; 
    padding-bottom: 60px !important;
    min-height: 600px;
  }

  .hero h2 {
    /* Drop from 84px to something that won't wrap too many lines */
    font-size: 52px !important; 
    line-height: 1.1;
  }
  
  .hero p {
    font-size: 20px;
    margin-top: 15px;
  }
}

/* --- Small Laptop/iPad Pro Fix (992px to 1200px) --- */
@media (min-width: 992px) and (max-width: 1200px) {
  .hero {
    padding-top: 160px !important; 
    min-height: 700px; 
  }

  .hero h2 {
    font-size: 64px !important; 
    line-height: 1.1;
  }
}

/* --- Mobile Fix (Max-width: 767px) --- */
@media (max-width: 767px) {
  .hero {
    /* Large top padding to clear the mobile logo/hamburger menu */
    padding-top: 230px !important; 
    padding-bottom: 50px !important;
    /* Ensure the hero is tall enough so the button doesn't hit the bottom */
    min-height: 550px; 
    /* Use a standard height to prevent 'jumpiness' on mobile browser bars */
    height: auto; 
  }

  .hero h2 {
    /* Scale down for narrow screens - roughly 32px to 36px is best */
    font-size: 34px !important; 
    line-height: 1.2;
    padding: 0 15px; /* Side padding so text doesn't touch the screen edges */
  }

  .hero p {
    font-size: 18px;
    padding: 0 20px;
    margin-top: 15px;
  }

  .hero .btn-get-started {
    /* Center the button and remove the 30px right margin from the desktop version */
    margin: 25px 0 0 0 !important;
    padding: 16px 32px; /* Slightly smaller button for smaller thumbs */
    font-size: 18px;
    width: 80%; /* Makes it a nice big touch target */
    max-width: 280px;
  }
}

/*--------------------------------------------------------------
# Call To Action Section
--------------------------------------------------------------*/
.call-to-action {
  padding: 80px 0;
  position: relative;
  clip-path: inset(0);
}

.call-to-action img {
  position: fixed;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.call-to-action:before {
  content: "";
  background: color-mix(in srgb, var(--background-color), transparent 50%);
  position: absolute;
  inset: 0;
  z-index: 2;
}

.call-to-action .container {
  position: relative;
  z-index: 3;
}

.call-to-action h3 {
  font-size: 28px;
  font-weight: 700;
  color: var(--default-color);
}

.call-to-action p {
  color: var(--default-color);
}

.call-to-action .cta-btn {
  font-family: var(--heading-font);
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 12px 40px;
  border-radius: 5px;
  transition: 0.5s;
  margin: 10px;
  border: 2px solid var(--contrast-color);
  color: var(--contrast-color);
}

.call-to-action .cta-btn:hover {
  background: var(--accent-color);
  border: 2px solid var(--accent-color);
}

/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
.about .content h3 {
  font-size: 1.75rem;
  font-weight: 700;
}

.about .content .fst-italic {
  color: color-mix(in srgb, var(--default-color), var(--contrast-color) 50%);
}

.about .content ul {
  list-style: none;
  padding: 0;
}

.about .content ul li {
  padding: 10px 0 0 0;
  display: flex;
}

.about .content ul i {
  color: var(--accent-color);
  margin-right: 0.5rem;
  line-height: 1.2;
  font-size: 1.25rem;
}

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

/*--------------------------------------------------------------
# Faq 2 Section
--------------------------------------------------------------*/
.faq-2 .faq-sidebar {
  position: sticky;
  top: 100px;
}

.faq-2 .faq-sidebar .faq-image {
  margin-bottom: 30px;
  border-radius: 14px;
  overflow: hidden;
}

.faq-2 .faq-sidebar .faq-image img {
  transition: transform 0.5s ease;
}

.faq-2 .faq-sidebar .faq-image img:hover {
  transform: scale(1.04);
}

.faq-2 .faq-sidebar .contact-box {
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  border-radius: 14px;
  padding: 30px;
}

.faq-2 .faq-sidebar .contact-box h3 {
  font-size: 20px;
  margin-bottom: 15px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 10px;
}

.faq-2 .faq-sidebar .contact-box h3 i {
  font-size: 24px;
  color: var(--accent-color);
}

.faq-2 .faq-sidebar .contact-box p {
  margin-bottom: 20px;
  font-size: 15px;
  color: color-mix(in srgb, var(--default-color), transparent 15%);
}

.faq-2 .faq-sidebar .contact-box .btn-contact {
  display: inline-block;
  background-color: var(--accent-color);
  color: var(--contrast-color);
  padding: 10px 24px;
  border-radius: 50px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.faq-2 .faq-sidebar .contact-box .btn-contact:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
  transform: translateY(-3px);
  box-shadow: 0 5px 15px color-mix(in srgb, var(--accent-color), transparent 70%);
}

.faq-2 .faq-tabs .nav-pills {
  gap: 15px;
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  padding-bottom: 15px;
}

.faq-2 .faq-tabs .nav-pills .nav-link {
  background: transparent;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  border-radius: 8px;
  font-size: 16px;
  font-weight: 500;
  padding: 10px 25px;
  transition: all 0.3s ease;
}

.faq-2 .faq-tabs .nav-pills .nav-link.active {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  box-shadow: 0 3px 10px color-mix(in srgb, var(--accent-color), transparent 70%);
}

.faq-2 .faq-tabs .nav-pills .nav-link:hover:not(.active) {
  background-color: color-mix(in srgb, var(--default-color), transparent 95%);
  color: var(--default-color);
}

.faq-2 .faq-tabs .tab-content {
  padding-top: 25px;
}

.faq-2 .faq-item {
  position: relative;
  margin-bottom: 20px;
  background-color: var(--surface-color);
  border-radius: 14px;
  box-shadow: 0 3px 10px color-mix(in srgb, var(--default-color), transparent 95%);
  padding: 25px 30px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.faq-2 .faq-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px color-mix(in srgb, var(--default-color), transparent 92%);
}

.faq-2 .faq-item h3 {
  font-size: 17px;
  font-weight: 600;
  padding-right: 35px;
  margin-bottom: 0;
  transition: color 0.3s ease;
}

.faq-2 .faq-item .faq-content {
  display: grid;
  grid-template-rows: 0fr;
  transition: 0.3s ease-in-out;
  visibility: hidden;
  opacity: 0;
}

.faq-2 .faq-item .faq-content p {
  margin-bottom: 0;
  padding-top: 15px;
  font-size: 15px;
  line-height: 1.6;
  overflow: hidden;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.faq-2 .faq-item .faq-toggle {
  position: absolute;
  right: 25px;
  top: 25px;
  font-size: 18px;
  color: var(--accent-color);
  transition: transform 0.3s ease;
}

.faq-2 .faq-item.faq-active {
  background-color: color-mix(in srgb, var(--surface-color), var(--accent-color) 3%);
}

.faq-2 .faq-item.faq-active h3 {
  color: var(--accent-color);
}

.faq-2 .faq-item.faq-active .faq-content {
  grid-template-rows: 1fr;
  visibility: visible;
  opacity: 1;
}

.faq-2 .faq-item.faq-active .faq-toggle {
  transform: rotate(180deg);
}

@media (max-width: 991.98px) {
  .faq-2 .faq-sidebar {
    position: relative;
    top: 0;
    margin-bottom: 40px;
  }

  .faq-2 .faq-sidebar .contact-box {
    text-align: center;
  }

  .faq-2 .faq-tabs .nav-pills {
    flex-wrap: wrap;
  }

  .faq-2 .faq-tabs .nav-pills .nav-item {
    flex: 1 0 30%;
  }

  .faq-2 .faq-tabs .nav-pills .nav-link {
    text-align: center;
  }
}

@media (max-width: 768px) {
  .faq-2 .faq-tabs .nav-pills .nav-item {
    flex: 1 0 100%;
  }

  .faq-2 .faq-item {
    padding: 20px;
  }

  .faq-2 .faq-item h3 {
    font-size: 16px;
    line-height: 1.5;
  }

  .faq-2 .faq-item .faq-toggle {
    right: 20px;
    top: 20px;
  }
}

/*--------------------------------------------------------------
# Clients Section
--------------------------------------------------------------*/
.clients .swiper-slide img {
  opacity: 0.5;
  transition: 0.3s;
  filter: grayscale(100);
}

.clients .swiper-slide img:hover {
  filter: none;
  opacity: 1;
}

.clients .swiper-wrapper {
  height: auto;
}

.clients .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.clients .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  opacity: 1;
  background-color: color-mix(in srgb, var(--default-color), transparent 80%);
}

.clients .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--accent-color);
}

/*--------------------------------------------------------------
# Cards Section
--------------------------------------------------------------*/
.cards .card-item {
  background: color-mix(in srgb, var(--default-color), transparent 97%);
  padding: 50px 30px;
  transition: all ease-in-out 0.3s;
  height: 100%;
  position: relative;
}

.cards .card-item span {
  color: var(--accent-color);
  display: block;
  font-size: 28px;
  font-weight: 700;
}

.cards .card-item h4 {
  font-size: 24px;
  font-weight: 600;
  padding: 0;
  margin: 20px 0;
}

.cards .card-item h4 a {
  color: var(--heading-color);
}

.cards .card-item p {
  font-size: 15px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  margin: 0;
  padding: 0;
}

.cards .card-item:hover {
  background: var(--accent-color);
  padding: 30px 30px 70px 30px;
}

.cards .card-item:hover span,
.cards .card-item:hover h4 a,
.cards .card-item:hover p {
  color: var(--contrast-color);
}

/*--------------------------------------------------------------
# Services Section
--------------------------------------------------------------*/
.services .service-item {
  position: relative;
  padding-top: 20px;
}

.services .service-item .icon {
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  width: 72px;
  height: 72px;
  position: relative;
  margin-right: 15px;
  line-height: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: ease-in-out 0.3s;
}

.services .service-item .icon i {
  color: var(--accent-color);
  font-size: 32px;
  z-index: 2;
  position: relative;
}

.services .service-item .title {
  font-weight: 700;
  margin-bottom: 5px;
  font-size: 18px;
}

.services .service-item .title a {
  color: var(--heading-color);
}

.services .service-item .title a:hover {
  color: var(--accent-color);
}

.services .service-item .description {
  font-size: 14px;
}

.services .service-item:hover .icon {
  background-color: var(--accent-color);
}

.services .service-item:hover .icon i {
  color: var(--contrast-color);
}

/*--------------------------------------------------------------
# Portfolio Section
--------------------------------------------------------------*/
.portfolio .portfolio-filters {
  padding: 0;
  margin: 0 auto 20px auto;
  list-style: none;
  text-align: center;
}

.portfolio .portfolio-filters li {
  cursor: pointer;
  display: inline-block;
  padding: 0;
  font-size: 18px;
  font-weight: 500;
  margin: 0 10px;
  line-height: 1;
  margin-bottom: 5px;
  transition: all 0.3s ease-in-out;
}

.portfolio .portfolio-filters li:hover,
.portfolio .portfolio-filters li.filter-active {
  color: var(--accent-color);
}

.portfolio .portfolio-filters li:first-child {
  margin-left: 0;
}

.portfolio .portfolio-filters li:last-child {
  margin-right: 0;
}

@media (max-width: 575px) {
  .portfolio .portfolio-filters li {
    font-size: 14px;
    margin: 0 5px;
  }
}

.portfolio .portfolio-content {
  position: relative;
  overflow: hidden;
}

.portfolio .portfolio-content img {
  transition: 0.3s;
}

.portfolio .portfolio-content .portfolio-info {
  opacity: 0;
  position: absolute;
  inset: 0;
  z-index: 3;
  transition: all ease-in-out 0.3s;
  background: rgba(0, 0, 0, 0.6);
  padding: 15px;
}

.portfolio .portfolio-content .portfolio-info h4 {
  font-size: 14px;
  padding: 5px 10px;
  font-weight: 400;
  color: #ffffff;
  display: inline-block;
  background-color: var(--accent-color);
}

.portfolio .portfolio-content .portfolio-info p {
  position: absolute;
  bottom: 10px;
  text-align: center;
  display: inline-block;
  left: 0;
  right: 0;
  font-size: 16px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.8);
}

.portfolio .portfolio-content .portfolio-info .preview-link,
.portfolio .portfolio-content .portfolio-info .details-link {
  position: absolute;
  left: calc(50% - 40px);
  font-size: 26px;
  top: calc(50% - 14px);
  color: #fff;
  transition: 0.3s;
  line-height: 1.2;
}

.portfolio .portfolio-content .portfolio-info .preview-link:hover,
.portfolio .portfolio-content .portfolio-info .details-link:hover {
  color: var(--accent-color);
}

.portfolio .portfolio-content .portfolio-info .details-link {
  left: 50%;
  font-size: 34px;
  line-height: 0;
}

.portfolio .portfolio-content:hover .portfolio-info {
  opacity: 1;
}

.portfolio .portfolio-content:hover img {
  transform: scale(1.1);
}

/*--------------------------------------------------------------
# Pricing Section
--------------------------------------------------------------*/
.pricing .pricing-item {
  background-color: var(--surface-color);
  box-shadow: 0px 5px 90px rgba(0, 0, 0, 0.1);
  padding: 40px 20px;
  text-align: center;
  border-radius: 8px;
  position: relative;
  overflow: hidden;
}

.pricing .pricing-item h3 {
  padding: 15px;
  margin-top: 15px;
  font-size: 18px;
  font-weight: 600;
}

.pricing .pricing-item h4 {
  color: var(--accent-color);
  font-size: 42px;
  font-family: var(--default-font);
  font-weight: 500;
}

.pricing .pricing-item h4 sup {
  font-size: 20px;
  top: -15px;
  left: -3px;
}

.pricing .pricing-item h4 span {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  font-size: 16px;
  font-weight: 300;
}

.pricing .pricing-item ul {
  padding: 20px 0;
  list-style: none;
  text-align: center;
  line-height: 20px;
  font-size: 14px;
}

.pricing .pricing-item ul li {
  padding-bottom: 16px;
}

.pricing .pricing-item ul .na {
  color: color-mix(in srgb, var(--default-color), transparent 60%);
  text-decoration: line-through;
}

.pricing .pricing-item .btn-wrap {
  padding: 15px;
  text-align: center;
}

.pricing .pricing-item .btn-buy {
  color: var(--accent-color);
  background-color: transparent;
  border: 2px solid var(--accent-color);
  display: inline-block;
  padding: 10px 40px 12px 40px;
  border-radius: 50px;
  font-size: 14px;
  font-family: var(--heading-font);
  font-weight: 600;
  transition: 0.3s;
}

.pricing .pricing-item .btn-buy:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
}

.pricing .recommended .btn-buy {
  background: var(--accent-color);
  color: var(--contrast-color);
}

.pricing .recommended .btn-buy:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
  border-color: color-mix(in srgb, var(--accent-color), transparent 20%);
}

.pricing .recommended-badge {
  position: absolute;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  font-size: 13px;
  padding: 3px 25px 6px 25px;
  background: color-mix(in srgb, var(--accent-color), transparent 92%);
  color: var(--accent-color);
  border-radius: 50px;
}

/*--------------------------------------------------------------
# Faq Section
--------------------------------------------------------------*/
.faq .content h3 {
  font-weight: 400;
  font-size: 34px;
}

.faq .content p {
  font-size: 15px;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.faq .faq-container .faq-item {
  background-color: var(--surface-color);
  position: relative;
  padding: 20px;
  margin-bottom: 20px;
  box-shadow: 0px 5px 25px 0px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

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

.faq .faq-container .faq-item h3 {
  font-weight: 600;
  font-size: 18px;
  line-height: 24px;
  margin: 0 30px 0 0;
  transition: 0.3s;
  cursor: pointer;
  display: flex;
  align-items: flex-start;
}

.faq .faq-container .faq-item h3 .num {
  color: var(--accent-color);
  padding-right: 5px;
}

.faq .faq-container .faq-item h3:hover {
  color: var(--accent-color);
}

.faq .faq-container .faq-item .faq-content {
  display: grid;
  grid-template-rows: 0fr;
  transition: 0.3s ease-in-out;
  visibility: hidden;
  opacity: 0;
}

.faq .faq-container .faq-item .faq-content p {
  margin-bottom: 0;
  overflow: hidden;
}

.faq .faq-container .faq-item .faq-toggle {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 16px;
  line-height: 0;
  transition: 0.3s;
  cursor: pointer;
}

.faq .faq-container .faq-item .faq-toggle:hover {
  color: var(--accent-color);
}

.faq .faq-container .faq-active h3 {
  color: var(--accent-color);
}

.faq .faq-container .faq-active .faq-content {
  grid-template-rows: 1fr;
  visibility: visible;
  opacity: 1;
  padding-top: 10px;
}

.faq .faq-container .faq-active .faq-toggle {
  transform: rotate(90deg);
  color: var(--accent-color);
}

/*--------------------------------------------------------------
# Team Section
--------------------------------------------------------------*/
.team .team-member {
  background-color: var(--surface-color);
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  position: relative;
  border-radius: 5px;
  transition: 0.5s;
  padding: 30px;
  height: 100%;
}

@media (max-width: 468px) {
  .team .team-member {
    flex-direction: column;
    justify-content: center !important;
    align-items: center !important;
  }
}

.team .team-member .pic {
  overflow: hidden;
  width: 150px;
  border-radius: 50%;
  flex-shrink: 0;
}

.team .team-member .pic img {
  transition: ease-in-out 0.3s;
}

.team .team-member:hover {
  transform: translateY(-10px);
}

.team .team-member .member-info {
  padding-left: 30px;
}

@media (max-width: 468px) {
  .team .team-member .member-info {
    padding: 30px 0 0 0;
    text-align: center;
  }
}

.team .team-member h4 {
  font-weight: 700;
  margin-bottom: 5px;
  font-size: 20px;
}

.team .team-member span {
  display: block;
  font-size: 15px;
  padding-bottom: 10px;
  position: relative;
  font-weight: 500;
}

.team .team-member span::after {
  content: "";
  position: absolute;
  display: block;
  width: 50px;
  height: 1px;
  background: color-mix(in srgb, var(--default-color), transparent 85%);
  bottom: 0;
  left: 0;
}

@media (max-width: 468px) {
  .team .team-member span::after {
    left: calc(50% - 25px);
  }
}

.team .team-member p {
  margin: 10px 0 0 0;
  font-size: 14px;
}

.team .team-member .social {
  margin-top: 12px;
  display: flex;
  align-items: center;
  justify-content: start;
  width: 100%;
}

@media (max-width: 468px) {
  .team .team-member .social {
    justify-content: center;
  }
}

.team .team-member .social a {
  background: color-mix(in srgb, var(--default-color), transparent 94%);
  transition: ease-in-out 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50px;
  width: 36px;
  height: 36px;
}

.team .team-member .social a i {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  font-size: 16px;
  margin: 0 2px;
}

.team .team-member .social a:hover {
  background: var(--accent-color);
}

.team .team-member .social a:hover i {
  color: var(--contrast-color);
}

.team .team-member .social a+a {
  margin-left: 8px;
}

/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact .info-item+.info-item {
  margin-top: 40px;
}

.contact .info-item i {
  color: var(--contrast-color);
  background: var(--accent-color);
  font-size: 20px;
  width: 44px;
  height: 44px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 4px;
  transition: all 0.3s ease-in-out;
  margin-right: 15px;
}

.contact .info-item h3 {
  padding: 0;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 5px;
}

.contact .info-item p {
  padding: 0;
  margin-bottom: 0;
  font-size: 14px;
}

.contact .php-email-form {
  height: 100%;
}

.contact .php-email-form input[type=text],
.contact .php-email-form input[type=email],
.contact .php-email-form textarea {
  font-size: 14px;
  padding: 10px 15px;
  box-shadow: none;
  border-radius: 0;
  color: var(--default-color);
  background-color: color-mix(in srgb, var(--background-color), transparent 50%);
  border-color: color-mix(in srgb, var(--default-color), transparent 80%);
}

.contact .php-email-form input[type=text]:focus,
.contact .php-email-form input[type=email]:focus,
.contact .php-email-form textarea:focus {
  border-color: var(--accent-color);
}

.contact .php-email-form input[type=text]::placeholder,
.contact .php-email-form input[type=email]::placeholder,
.contact .php-email-form textarea::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

.contact .php-email-form button[type=submit] {
  color: var(--contrast-color);
  background: var(--accent-color);
  border: 0;
  padding: 10px 30px;
  transition: 0.4s;
  border-radius: 4px;
}

.contact .php-email-form button[type=submit]:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
}

/*--------------------------------------------------------------
# Portfolio Details Section
--------------------------------------------------------------*/
.portfolio-details .portfolio-details-slider img {
  width: 100%;
}

.portfolio-details .portfolio-details-slider .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: color-mix(in srgb, var(--default-color), transparent 85%);
  opacity: 1;
}

.portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--accent-color);
}

.portfolio-details .portfolio-info {
  background-color: var(--surface-color);
  padding: 30px;
  box-shadow: 0px 0 30px rgba(0, 0, 0, 0.1);
}

.portfolio-details .portfolio-info h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
}

.portfolio-details .portfolio-info ul {
  list-style: none;
  padding: 0;
  font-size: 15px;
}

.portfolio-details .portfolio-info ul li+li {
  margin-top: 10px;
}

.portfolio-details .portfolio-description {
  padding-top: 30px;
}

.portfolio-details .portfolio-description h2 {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 20px;
}

.portfolio-details .portfolio-description p {
  padding: 0;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

/*--------------------------------------------------------------
# Service Details Section
--------------------------------------------------------------*/
.service-details .services-list {
  background-color: var(--surface-color);
  padding: 10px 30px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  margin-bottom: 20px;
}

.service-details .services-list a {
  display: block;
  line-height: 1;
  padding: 8px 0 8px 15px;
  border-left: 3px solid color-mix(in srgb, var(--default-color), transparent 70%);
  margin: 20px 0;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  transition: 0.3s;
}

.service-details .services-list a.active {
  color: var(--heading-color);
  font-weight: 700;
  border-color: var(--accent-color);
}

.service-details .services-list a:hover {
  border-color: var(--accent-color);
}

.service-details .services-img {
  margin-bottom: 20px;
}

.service-details h3 {
  font-size: 26px;
  font-weight: 700;
}

.service-details h4 {
  font-size: 20px;
  font-weight: 700;
}

.service-details p {
  font-size: 15px;
}

.service-details ul {
  list-style: none;
  padding: 0;
  font-size: 15px;
}

.service-details ul li {
  padding: 5px 0;
  display: flex;
  align-items: center;
}

.service-details ul i {
  font-size: 20px;
  margin-right: 8px;
  color: var(--accent-color);
}

/*--------------------------------------------------------------
# Starter Section Section
--------------------------------------------------------------*/


/**************snoot stuff**************/

.call-to-action h2
{
  font-family: "ohno-blazeface", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size:36px !important;
}

#about h2
{
  font-family: "ohno-blazeface", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size:48px !important;
}

#about p
{
  
  font-size:18px !important;
}

/* 1. Container Setup */
.highlight-wrapper {
  position: relative;
  display: inline-block;
  z-index: 1;
}

/* 2. Positioning the SVG */
.fancy-underline {
  position: absolute;
  bottom: -4px; /* Move the line up or down relative to the text */
  left: 0;
  width: 100%;
  height: 12px; /* Controls the overall height of the swoop */
  z-index: -1; /* Puts the line behind the text */
  overflow: visible;
}

/* 3. Styling and Animating the Path */
.fancy-underline path {
  fill: transparent;
  stroke: #f0b656; /* Set this to your client's brand color */
  stroke-width: 10px; /* Adjust the thickness of the line */
  stroke-linecap: square;
  stroke-linejoin: bevel;

  /* The Animation Setup */
  stroke-dasharray: 470;
  stroke-dashoffset: 470; /* Hides the line initially */
  animation: drawUnderline 1s ease-out forwards;
  animation-delay: 0.5s; /* Short delay before the animation starts */
}

/* 4. The Keyframes */
@keyframes drawUnderline {
  to {
    stroke-dashoffset: 0; /* Animates the line into view */
  }
}

.heroh2
{
  color: #303634; 
  font-size: 1.5rem; 
  margin-bottom: 0;
}

.about .btn-get-started, .btn-rates {
  color: #fff;
  font-weight: 400;
  font-size: 20px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 24px 48px;
  margin: 30px 30px 0 0;
  border-radius: 4px;
  transition: 0.5s;
  background-color:#277579;
}

.about .btn-get-started:hover,  .btn-rates:hover {
  color: #fff;
  background: #518f90;
}

/* Custom typography for the background wave */
.rates-wave-text {
  font-family: "ohno-blazeface", sans-serif;
  font-weight: 400;
  font-size: 40px; /* Adjust this value manually to make it perfectly fill the space */
  fill: #8fe6c8;
}

/* Container & Borders */
.custom-accordion {
  list-style: none;
  padding: 0;
  margin: 0;
  border-top: 1px solid #000; /* Top line of the whole block */
}

.accordion-item {
  border-bottom: 1px solid #000; /* Bottom line for each item */
}

/* Header & Button Reset */
.accordion-header {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: transparent;
  border: none;
  padding: 20px 0;
  cursor: pointer;
  text-align: left;
  color: #303634;
  font-size: 1.1rem;
  font-weight: 400;
}

/* The Plus Icon Drawing */
.accordion-icon {
  position: relative;
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  margin-left: 15px;
}

.icon-line {
  position: absolute;
  background-color: #000;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: transform 0.3s ease; /* Smooth rotation */
}

.icon-line.horizontal {
  width: 100%;
  height: 1px;
}

.icon-line.vertical {
  width: 1px;
  height: 100%;
}

/* Icon Animation when Open */
/* Rotates the vertical line 90 degrees so it hides perfectly behind the horizontal line */
.accordion-header[aria-expanded="true"] .icon-line.vertical {
  transform: translate(-50%, -50%) rotate(90deg);
}

/* Smooth Accordion Content Reveal via CSS Grid */
.accordion-content {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.3s ease;
}

.accordion-header[aria-expanded="true"] + .accordion-content {
  grid-template-rows: 1fr;
}

.accordion-inner {
  overflow: hidden;
}

.accordion-inner p {
  padding-bottom: 20px;
  margin: 0;
  color: #444;
}

#rates h2
{
  font-family: "ohno-blazeface", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size:48px !important;
  color:#303634;
  padding-bottom:20px;
}

.ratesp
{
  margin:20px 0;
  color: #303634;
}


/* Custom Input Field Styling */
.custom-input {
  background-color: #f9ebd9 !important; /* Forces your custom background color */
  border: none !important;              /* Removes default Bootstrap borders */
  border-radius: 4px;                   /* Subtle rounding (change to 0px for sharp corners) */
  padding: 14px 18px;
  color: #303634;
}

/* Removes the default blue Bootstrap glow when a user clicks into the field */
.custom-input:focus {
  outline: none;
  box-shadow: 0 0 0 2px rgba(116, 181, 159, 0.4); /* Replaces blue glow with your theme's green */
  background-color: #f9ebd9 !important;
}

/* Placeholder text color adjustment */
.custom-input::placeholder {
  color: #8a8e8c;
  opacity: 1;
}

/* Floating Image Configuration */
.floating-img {
  top: 10%;
  left: -5%; /* Adjust this to move it further left or right */
  width: 45%; /* Keeps it responsive to the column width */
  max-width: 350px;
  z-index: 2;
  
  border-radius: 8px;
}

/* Base height for the image column so it doesn't collapse on mobile */
.min-vh-50 {
  min-height: 50vh;
}

/* Protects the form from the overlapping image on desktop */
@media (min-width: 992px) {
  .form-clearance {
    padding-right: 90px !important; /* Increase this if the image still overlaps slightly */
  }
}

/* Style the detached labels */
.custom-label {
  font-size: 0.9rem;
  font-weight: 600;
  color: #303634;
  margin-bottom: 0.4rem; /* Keeps the label snug against the top of its input */
}

/* Custom Input Field Styling */
.custom-input {
  background-color: #f9ebd9 !important;
  border: none !important;
  border-radius: 4px;
  padding: 12px 16px;
  color: #303634;
}

/* Removes the default blue Bootstrap glow when clicked */
.custom-input:focus {
  outline: none;
  box-shadow: 0 0 0 2px rgba(116, 181, 159, 0.4); 
  background-color: #f9ebd9 !important;
}


/* Left Column Typography */
.bring-heading {
  color: #fff;
  font-family: "ohno-blazeface", sans-serif;
  font-size: 64px;
  font-weight: 300;
  line-height: 67.584px;
}

/* Right Column Typography */
.bring-item {
  color: #fff;
  font-family: "ohno-blazeface", sans-serif;
  font-size: 27.2px;
  font-weight: 300;
  line-height: 31.7261px;
  margin: 0;
  padding: 24px 0; /* Controls the vertical spacing between each item */
}

/* The Separator Lines 
  This applies a solid white line to the bottom of every item, 
  but specifically ignores the very last item in the list.
*/
.bring-item:not(:last-child) {
  border-bottom: 1px solid #fff;
}

/* Removes the top padding from the first item so it aligns perfectly with the left heading */
.bring-item:first-child {
  padding-top: 0;
}

/* Custom massive padding for desktop */
.custom-section-padding {
  padding-top: 220px;
  padding-bottom: 220px;
}

/* Scales the padding down slightly for smaller screens */
@media (max-width: 991px) {
  .custom-section-padding {
    padding-top: 180px;
    padding-bottom: 180px;
  }
}

/* Forces the container to be a perfect square */
.insta-square {
  aspect-ratio: 1 / 1;
  width: 100%;
  overflow: hidden;
  position: relative;
}

/* Ensures images fill the square without stretching */
.insta-square img {
  object-fit: cover;
  transition: transform 0.4s ease; /* Controls the speed of the zoom */
}

/* Adds a subtle zoom effect when hovered */
.insta-square:hover img {
  transform: scale(1.05);
}

/* Social Link Hover Effect */
.social-link {
  transition: opacity 0.3s ease;
  opacity: 1;
}

.social-link:hover {
  opacity: 0.7; /* Dims slightly when moused over */
}

/* Footer Typography */
.footer-text-info {
  font-size: 0.95rem;
  font-weight: 300;
  letter-spacing: 0.5px;
}

/* Adjusts the vertical separators for mobile */
@media (max-width: 767px) {
  .footer-text-info span {
    display: block;
    margin-bottom: 5px;
  }
  .footer-text-info .separator {
    display: none; /* Hides the pipe symbols on small screens so they stack neatly */
  }
}

/* Re-used from the underline setup */
.highlight-wrapper {
  position: relative;
  display: inline-block;
  z-index: 1;
}

/* 1. The Animated Circle around 'Buy' */
.fancy-circle {
  position: absolute;
  top: -15%; 
  left: -15%;
  width: 130%; /* Stretches the circle slightly wider than the word */
  height: 130%; /* Stretches the circle slightly taller than the word */
  z-index: -1;
  overflow: visible;
}

.fancy-circle path {
  fill: transparent;
  stroke: #f0b656; /* Set to your accent color */
  stroke-width: 10px;
  stroke-linecap: square;
  stroke-linejoin: bevel;
  
  /* The Drawing Animation Setup */
  stroke-dasharray: 630; /* The approximate mathematical length of the circle path */
  stroke-dashoffset: 630;
  animation: drawCircle 1s ease-out forwards;
  animation-delay: 0.3s;
}

@keyframes drawCircle {
  to {
    stroke-dashoffset: 0;
  }
}

/* 2. The Gift Voucher Background */
.highlight-voucher {
  background-color: #f0b656;
  color: #fff; /* Darker text contrasts much better against the yellow/gold */
  padding: 4px 16px;
  border-radius: 8px; /* Gives it a slight 'ticket' shape */
  display: inline-block;
}

/* Custom Typography for the 3 Headings */
.lesson-h2 {
  color: #faf3ed;
  font-family: "ohno-blazeface", sans-serif;
  font-size: 56.32px;
  font-weight: 300;
  line-height: 62.1773px;
  margin-bottom: 0;
}

/* Subtext styling for the middle column */
.lesson-subtext {
  color: #faf3ed;
  font-size: 1.1rem;
  font-weight: 400;
  opacity: 0.9;
}

/* The repeating wavy image at the bottom */
.wavy-bottom-divider {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 25px; /* Adjust this to match the actual height of your wavyline.webp */
  background-image: url('../img/wavyline.webp'); /* Check this path matches your folder structure */
  background-repeat: repeat-x; /* Makes it repeat infinitely to the right */
  background-position: center bottom;
  background-size: contain; /* Ensures the wave doesn't stretch or distort */
  z-index: 5;
}

/* Mobile Scaling for the massive font */
@media (max-width: 991px) {
  .lesson-h2 {
    font-size: 42px; /* Shrinks the text so it fits better on phones */
    line-height: 48px;
  }
}

/* Image Uniformity */
.image-wrapper {
  width: 100%;
  aspect-ratio: 4 / 3; /* Forces all images to this square-ish rectangle shape */
  overflow: hidden;
  border-radius: 12px;
}

.image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* Crops the image to fill the space without stretching */
  transition: transform 0.3s ease;
}

.pricing-card:hover .image-wrapper img {
  transform: scale(1.05); /* Subtle hover effect */
}

/* Typography Styles */
.price-h2 {
  color: #303634;
  display: inline;
  font-family: "ohno-blazeface", sans-serif;
  font-size: 27.2px;
  font-weight: 300;
  line-height: 31.7261px;
  text-align:left !important;
}

.price-h3 {
  color: #faf3ed;
  font-size: 20.8px;
  font-weight: 700;
  letter-spacing: 0.416px;
  line-height: 31.2px;
  text-align:left;
}

.price-p {
  color: #303634;
  font-family: "degular", sans-serif;
  font-size: 20.8px;
  letter-spacing: 0.416px;
  line-height: 31.2px;
  text-align:left;
}

/* Image Uniformity */
.party-image-wrapper {
  width: 100%;
  aspect-ratio: 4 / 3; /* Matches the pricing section images */
  overflow: hidden;
  border-radius: 8px;
}

.party-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Typography - Main Heading */
.party-main-heading {
  color: #277579;
  font-family: "ohno-blazeface", sans-serif;
  font-size: 64px;
  font-weight: 300;
  line-height: 67.584px;
}

/* Typography - Sub Headings */
.party-sub-heading {
  color: #277579;
  font-family: "ohno-blazeface", sans-serif;
  font-size: 27.2px;
  font-weight: 300;
  line-height: 31.7261px;
}

/* Paragraph Styles */
.party-p {
  color: #303634;
  font-family: "degular", sans-serif;
  font-size: 20.8px;
  letter-spacing: 0.416px;
  line-height: 31.2px;
}

.party-p-bold {
  color: #303634;
  font-family: "degular", sans-serif;
  font-size: 22px; /* Slightly bigger as requested */
  font-weight: 700;
  letter-spacing: 0.416px;
  line-height: 31.2px;
}

/* List Styles */
.party-list {
  color: #303634;
  font-size: 20.8px;
  letter-spacing: 0.416px;
  line-height: 31.2px;
  padding-left: 1.2rem; /* Indent for bullets */
}

.party-list li {
  color: #303634;
  font-family: "degular", sans-serif;
  font-size: 17.6px;
  letter-spacing: 0.416px;
  line-height: 26.4px;
  margin: 8.8px 0px;
}

/* Responsive Scaling for the big heading */
@media (max-width: 991px) {
  .party-main-heading {
    font-size: 48px;
    line-height: 52px;
  }
}

/* Label styling for the dark green background */
.custom-label-white {
  font-size: 0.9rem;
  font-weight: 600;
  color: #ffffff; /* Changed from #303634 */
  margin-bottom: 0.4rem;
}

/* Custom Input Field Styling */
.custom-input {
  background-color: #f9ebd9 !important;
  border: none !important;
  border-radius: 4px;
  padding: 14px 18px;
  color: #303634;
  transition: all 0.3s ease;
}

.custom-input:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(240, 182, 86, 0.5); /* Focus glow matches the yellow submit button */
  background-color: #ffffff !important; /* Slightly lighter on focus for feedback */
}

/* Floating Image Configuration */
.floating-img {
  top: 15%; /* Nudged down slightly */
  left: -8%; /* Nudged slightly more to the left for a deeper overlap */
  width: 50%; 
  max-width: 400px;
  z-index: 2;
  border-radius: 8px;
}

.min-vh-50 {
  min-height: 50vh;
}

@media (min-width: 992px) {
  .form-clearance {
    padding-right: 120px !important; /* Increased clearance for the wider floating image */
  }
}

.hero-guiding, .hero-ladiesclub
{
  min-height: 60vh !important;
}

/* 1. The Dark Blueish Tint Overlay */
.hero-guiding::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  
  /* Deep navy blue color */
  background-color: #0a2e3f; 
  
  /* Blends the blue into the shadows and midtones of the photo */
  mix-blend-mode: multiply; 
  
  /* Controls how heavy the tint is (0.0 to 1.0) */
  opacity: 0.75; 
  
  /* Sits just above the image, but below the text */
  z-index: 1; 
}

/* 2. Lock the background image to the back */
.hero-guiding img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.hero-ladiesclub img.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 75%; /* Your positioning tweak from earlier */
  z-index: 0;
}

/* 3. Pull the text container to the front */
/* 3. Pull the text container to the front */
.hero-guiding .container, 
.hero-ladiesclub .container {
  position: relative;
  z-index: 2;
}

/* WhatsApp Button Styling */
.btn-whatsapp {
  background-color: #25D366;
  color: #ffffff !important; /* Forces the text to stay white */
  padding: 14px 32px;
  border-radius: 50px; /* Creates the rounded 'pill' shape */
  font-family: "degular", sans-serif;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 1px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.3s ease;
  border: none;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3); /* Subtle green glow */
}

/* Hover Effect */
.btn-whatsapp:hover {
  background-color: #128C7E; /* Shifts to the darker WhatsApp green */
  color: #ffffff;
  transform: translateY(-3px); /* Lifts the button up slightly */
  box-shadow: 0 6px 20px rgba(18, 140, 126, 0.4);
}

/* Icon Sizing */
.btn-whatsapp i {
  font-size: 1.3rem; /* Makes the icon slightly larger than the text */
}

/* Guide Grid Image Styling */
.guide-grid-img {
  height: 100%;
  aspect-ratio: 4 / 3; /* Forces a uniform shape for all images */
  object-fit: cover;   /* Crops the image cleanly to fit the shape */
  display: block;      /* Removes any tiny gaps below the images */
  transition: opacity 0.3s ease;
}

/* Optional: A subtle hover effect so users know they are interacting with the gallery */
.guide-grid-img:hover {
  opacity: 0.9;
}

#guide-pics
{
  padding-bottom:0px !important;
}

h2#guiding-about {
  color: #303634;
  font-family: "ohno-blazeface", sans-serif;
  font-size: 28px !important;
  font-weight: 300;
  line-height: 36px;
  margin: 32px 0 0;
}

.btn-get-startedguiding
{
      color: #fff;
    font-weight: 400;
    font-size: 20px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 24px 20px;
    margin: 20px 10px 0 0;
    border-radius: 4px;
    transition: 0.5s;
    background-color: #277579;
}


/* 2. Positioning the SVG */
.fancy-underline-ladiesclub {
  position: absolute;
  bottom: -4px; /* Move the line up or down relative to the text */
  left: 0;
  width: 100%;
  height: 12px; /* Controls the overall height of the swoop */
  z-index: -1; /* Puts the line behind the text */
  overflow: visible;
}

/* 3. Styling and Animating the Path */
.fancy-underline-ladiesclub path {
  fill: transparent;
  stroke: #d47668; /* Set this to your client's brand color */
  stroke-width: 10px; /* Adjust the thickness of the line */
  stroke-linecap: square;
  stroke-linejoin: bevel;

  /* The Animation Setup */
  stroke-dasharray: 470;
  stroke-dashoffset: 470; /* Hides the line initially */
  animation: drawUnderlinelc 1s ease-out forwards;
  animation-delay: 0.5s; /* Short delay before the animation starts */
}

/* 4. The Keyframes */
@keyframes drawUnderlinelc {
  to {
    stroke-dashoffset: 0; /* Animates the line into view */
  }
}


/* Protect images inside the hero container from being stretched by the master template */
.hero-ladiesclub .container img {
  position: relative !important;
  width: auto !important;
  height: auto !important;
  max-width: 200px !important; /* Matches your inline style */
}

/* Typography for Ladies Club Section */
.ladies-h2 {
  color: #ffffff;
  font-family: "ohno-blazeface", sans-serif;
  font-size: 42px; 
  font-weight: 300;
  line-height: 1.2;
}

.ladies-h3 {
  color: #303634;
  font-family: "ohno-blazeface", sans-serif;
  font-size: 32px; 
  font-weight: 300;
}

.ladies-p {
  color: #303634;
  font-family: "degular", sans-serif;
  font-size: 1.15rem;
  line-height: 1.6;
}

/* The Overlapping Leaf Magic */
.leafies-overlap {
  position: absolute;
  /* Pushes it DOWN so it hangs into the next row */
  bottom: -80px; 
  /* Pulls it LEFT so it hangs off the corner of the main image */
  left: -40px;   
  /* Adjust width to control how big the leaf is */
  width: 250px;  
  z-index: 3; /* Forces it to sit on top of the main image */
  pointer-events: none; /* Prevents the image from blocking text selection or clicks */
}

/* Subtle hover pop for the WhatsApp button */
.transition-scale {
  transition: transform 0.3s ease;
}
.transition-scale:hover {
  transform: scale(1.05);
}

/* Mobile Adjustments */
@media (max-width: 767px) {
  /* Shrink the leaf and pull it in slightly so it doesn't cause sideways scrolling on phones */
  .leafies-overlap {
    bottom: -40px;
    left: -15px;
    width: 150px;
  }
  .ladies-h2 {
    font-size: 36px;
  }
}

.why-choose-h2 {
  color: #ffffff;
  font-family: "ohno-blazeface", sans-serif;
  font-size: 64px;
  font-weight: 300;
  line-height: 1.2;
}

/* Scales the massive heading down for mobile */
@media (max-width: 991px) {
  .why-choose-h2 {
    font-size: 48px;
  }
}

/* 1. The Accordion Titles (Questions) */
#why-choose-us .custom-accordion .accordion-title {
  color: #ffffff !important;
  font-family: "ohno-blazeface", sans-serif !important;
  font-size: 28px; /* Bumped up slightly since the fancy font reads a bit smaller */
  font-weight: 300;
  letter-spacing: 0.5px;
}

/* 2. The Accordion Paragraph Text (Answers) */
#why-choose-us .custom-accordion .accordion-inner p {
  color: #ffffff !important;
  opacity: 0.9; /* Slightly fades the paragraph text to create visual hierarchy */
}

/* 3. The Plus/Minus Icons */
#why-choose-us .custom-accordion .icon-line {
  background-color: #ffffff !important; 
}

/* 1. Change the top border of the whole accordion block */
#why-choose-us .custom-accordion {
  border-top: 1px solid rgba(255, 255, 255, 0.4) !important;
}

/* 2. Change the bottom border of every individual item */
#why-choose-us .accordion-item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.4) !important;
}

/* 3. Change the Plus/Minus lines to pure white */
#why-choose-us .icon-line {
  background-color: #ffffff !important;
}

#why-choose-us {
  /* 90vh means it will take up 90% of the screen height. 
     Change this to 100vh if you want it to be fully edge-to-edge! */
  min-height: 70vh; 
}

/* Card Backgrounds and Base Styles */
.bg-cream {
  background-color: #fdf5ea; /* Slightly lighter than your input background to make it pop */
  border-radius: 16px;
}

/* Card Backgrounds and Base Styles */
.bg-cream {
  background-color: #fdf5ea;
  border-radius: 16px;
}

.stagger-box {
  border-radius: 16px;
  border: 2px solid rgba(255, 255, 255, 0.5); 
  padding-top: 100px !important;
  padding-bottom: 100px !important;
}

/* Background Image for Box 3 */
.bg-ladies-equipment {
  background-image: url('../img/ladiesequipment.jpg');
  background-size: cover;
  background-position: center;
}

/* Base style for all background pattern images */
.stagger-pattern-bg {
  position: absolute;
  object-fit: cover;
  opacity: 0.5; /* Adjust as needed for subtly */
  pointer-events: none; /* Prevents images from interfering with clicks */
}

/* Instance A: At top, overlapping Block 1 from above */
/* Instance A: At top, pushed to the back */
.pattern-top {
  top: -5%;
  left: 10%;
  width: 40%;
  height: auto;
  z-index: 0; /* Changed from 3 to 0 so it stays behind the text boxes */
}

/* Instance B: At bottom, behind Blocks 2 & 3 */
.pattern-bottom {
  top: 30%;
  right: 0;
  width: 60%;
  height: auto;
  z-index: 0; /* Forces it behind all content boxes */
}

/* The Staggering Magic (Desktop only) */
@media (min-width: 992px) {
  .stagger-box-right {
    margin-top: 120px;
    margin-left: -60px;
  }
}

/* Mobile fallback for staggering */
@media (max-width: 991px) {
  .stagger-box-right {
    margin-top: 1.5rem;
  }
}

/* Typography Matching your Image */
.stagger-subtitle {
  font-family: "degular", sans-serif;
  color: #277579;
  font-size: 0.85rem;
  font-weight: 700;
  /* Updated to capitalization as seen in the image */
  text-transform: capitalize; 
  letter-spacing: 1px;
}

.stagger-text {
  font-family: "ohno-blazeface", sans-serif;
  color: #277579;
  font-size: 32px;
  font-weight: 300;
  line-height: 1.2;
  margin-bottom: 0;
}

/* Optional: Slightly reduce the padding on mobile so they don't take up the whole screen */
@media (max-width: 767px) {
  .stagger-box {
    padding-top: 50px !important;
    padding-bottom: 50px !important;
  }
}

/* Typography for the Join Us Section */
.join-h2 {
  color: #ffffff;
  font-family: "ohno-blazeface", sans-serif;
  font-size: 56px;
  font-weight: 300;
  line-height: 1.1;
}

.join-p {
  color: #ffffff;
  font-family: "degular", sans-serif;
  font-size: 1.15rem;
  line-height: 1.6;
  opacity: 0.95; /* Very subtle fade to let the H2 pop more */
}

/* Floating Elements Positioning */
.right-leafies {
  position: absolute;
  bottom: -30px; /* Hangs off the bottom */
  right: -30px;  /* Hangs off the right side */
  width: 180px;  /* Adjust this up or down to change the leaf size */
  z-index: 2;    /* Sits above the main photo */
  pointer-events: none;
}

.pink-waves {
  position: absolute;
  top: -40px; /* Adjust up or down depending on where you want it to start */
  right: 0;
  transform: scale(0.75); /* Exactly 75% of its natural size */
  transform-origin: top right; /* Ensures it scales towards the corner, not the center */
  z-index: 0; /* Sits behind the text */
  pointer-events: none;
}

/* Mobile Adjustments */
@media (max-width: 991px) {
  .join-h2 {
    font-size: 42px;
  }
  .right-leafies {
    bottom: -20px;
    right: -10px;
    width: 130px; /* Shrinks the leaf slightly on mobile to avoid sideways scrolling */
  }
  .pink-waves {
    transform: scale(0.5); /* Shrinks waves further on mobile */
  }
}

/* Typography for Contact Section */
.contact-h2 {
  color: #303634; /* Updated to match your dark text */
  font-family: "ohno-blazeface", sans-serif;
  font-size: 56px;
  font-weight: 300;
  line-height: 1.1;
}

.contact-details p {
  color: #303634;
  font-family: "degular", sans-serif;
  font-size: 1.2rem;
  line-height: 1.4;
}

.contact-p {
  color: #303634;
  font-family: "degular", sans-serif;
  font-size: 1.15rem;
  line-height: 1.6;
}

/* Link hover effect */
.hover-white {
  transition: color 0.3s ease;
}
.hover-white:hover {
  color: #ffffff !important;
}

/* Reusable Form Styles (In case they aren't carrying over globally) */
.custom-label-white {
  font-size: 0.9rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 0.4rem;
}

.custom-input {
  background-color: #f9ebd9 !important;
  border: none !important;
  border-radius: 4px;
  padding: 14px 18px;
  color: #303634;
  transition: all 0.3s ease;
}

.custom-input:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(240, 182, 86, 0.5); 
  background-color: #ffffff !important;
}

.custom-label-dark {
  font-size: 0.9rem;
  font-weight: 600;
  color: #303634; /* Matches the heading and paragraph text */
  margin-bottom: 0.4rem;
}

/* 1. Enlarge the Facebook and Instagram icons */
.navmenu ul li a i.bi {
  font-size: 22px !important; 
  vertical-align: middle; /* Keeps them from sitting too high or low */
}

/* 2. Enlarge the TripAdvisor SVG */
.navmenu ul li a svg {
  width: 22px !important;
  height: 22px !important;
  vertical-align: middle;
}