:root {
    --primary-color: #00a800;
    --primary-color-transparent: #00a80092;
    --secondary-color: #169116;
    --text-color: rgb(15, 15, 15);
    --btn-text-color: #ffffff;
    --hero-text-color: #ffffff;
    --background-color: #ffffff;
    --card-background-color: #e9e9e9;
  }

  html {
    scroll-behavior: smooth;
    scroll-padding-top: 60px;

  }  
  
  /* General Styles */
  body {
    font-family: Arial, sans-serif;
    background-color: var(--background-color);
    color: var(--text-color);
    margin: 0;
    padding: 0;
    line-height: 1.6; /* Increase or decrease as needed */
  }
  
  /* Navigation Bar */
  nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: var(--background-color);
    position: sticky;
    top: 0;
    z-index: 10000;
    padding: 0 20px;
    min-height: 60px;
    box-shadow: 0 0px 10px rgba(0, 0, 0, 0.1);
  }
  
  .nav-left {
    /* allow wrapping and expansion */
    flex: 1 1 auto;
    white-space: normal;
    overflow-wrap: break-word;
    font-size: 1.5em;
    color: var(--primary-color);
  }

  .nav-left a {
    text-decoration: none;
    color: var(--primary-color);
  }

  .site-logo {
    margin-right: 8px;
    vertical-align: middle;
    height: 64px;
    
    flex-shrink: 0; 
    width: auto;
  }
  
  
  .nav-right {
    flex: 0 0 auto;
  }
  
  .nav-right .cta-btn {
    padding: 10px 20px;
    background-color: var(--primary-color);
    color: var(--hero-text-color);
    text-decoration: none;
    border-radius: 4px;
    white-space: nowrap; /* keep CTA on one line */
  }

@media (max-width: 487px) {
  .nav-right {
    display: none;
  }
}

#thank-you-section {
  min-height: 100vh;

}
  
  
  /* Hero Section */
  .hero {
    position: relative;
    height: 100vh;
    width: 100%;
    margin-top: -60px;
    overflow: hidden;
  }
  
  /* Add transparent dark overlay to hero section */
  .hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.3);
    z-index: 1;
  }
  
  .carousel {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 0;
  }
  
  .carousel-image {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 1s;
  }
  
  .carousel-image.active {
    opacity: 1;
  }
  
  .hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: left;
    z-index: 2;
    color: var(--hero-text-color);
  }
  
  .hero-content h1 {
    font-size: 2em;
    margin-bottom: .1em;

  }

  .hero-content p {
    margin-bottom: 2em;
  }
  
  .hero-content h1,
  .hero-content p {
    text-shadow: 0 0 20px rgba(0, 0, 0, 0.7);

  }
  
  /* Responsive Styling */
  @media (max-width: 768px) {
    .hero-content h1 {

    }
    .hero-content p {
      font-size: 1em;
    }
  }
  
  
  .hero-btn,
  .cta-btn {
    background-color: var(--primary-color);
    color: var(--btn-text-color);
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 4px;
  }

  .cta-btn {
     /* Main gradient for bubble effect */
  background: linear-gradient(to bottom, var(--primary-color) 0%, var(--secondary-color) 100%);
  border: 1px solid var(--secondary-color);
  white-space: nowrap;
  
  /* Outer shadow for depth */
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
  transition: background 0.3s ease;
  }
  
  
  
  .hero-btn:hover,
  .cta-btn:hover {
    background-color: var(--secondary-color);
  }

  /* Hover state to mimic a slight press effect */
.cta-btn:hover {
  background: linear-gradient(to bottom, #009e03 100%, #39a83f 0%);
}

/* Glossy overlay using a pseudo-element */
.cta-btn::before {
  content: "";
  
  background: rgba(255, 255, 255, 0.4);
  border-top-left-radius: 25px;
  border-top-right-radius: 25px;
  /* Create a soft gloss effect */
  box-shadow: inset 0 1px 2px rgba(255, 255, 255, 0.6);
  pointer-events: none;
}


  
  /* Main Content Sections */
  section {
    margin: 2em 20px;


  }

  .hero {
    margin: 0 0;
  }

  .container {
    max-width: 800px;
    margin: 0 auto;
    
  }
  
  section h2 {
    color: var(--text-color);
  }

  section ul {
    list-style-type: none;

  }

  .outer-container {

  }
  
  /* Form Styles */
  #contact-container {
    background-color: var(--card-background-color);
    margin: 0px auto;
    padding: 20px ;
    border-radius: 4px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
  }

  #contact h2 {
    margin-top: 0;
  }


  form input,
  form select,
  form textarea {
    width: 100%;
    padding: 0.5em;
    margin-bottom: 1em;
    border: 1px solid var(--text-color);
    border-radius: 4px;
    background-color: var(--background-color);
    color: var(--text-color);
  }

  /* Optionally, adjust input styling for a friendlier look */
form input, form textarea, form select {
  border: 1px solid #ccc;
  padding: 0.5em;
  border-radius: 4px;
  width: 100%;
  margin-bottom: 1em;
  box-sizing: border-box; 
}


  
  form button {
    background-color: var(--primary-color);
    color: var(--text-color);
    padding: 0.75em 1.5em;
    border: none;
    border-radius: 4px;
    cursor: pointer;
  }
  
  form button:hover {
    background-color: var(--secondary-color);
  }

  /* Multi-step Form Styles */
form .tab {


  border-radius: 4px;

}

.button-container {
  text-align: right;
  margin-top: 1em;
}




/* Optional: Add a subtle transition to tabs */
form .tab {
  transition: opacity 0.3s ease;
}


/* Contact Method Buttons Styles */
.contact-method-buttons {
  display: flex;
  gap: 1em;
  margin-bottom: 1em;
}

.contact-btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1em;
  background: linear-gradient(to bottom, var(--primary-color) 0%, var(--secondary-color) 100%);
  border: 1px solid var(--secondary-color);
  border-radius: 4px;
  cursor: pointer;
  transition: background 0.3s ease;
  text-align: center;
  color: var(--btn-text-color);
  font-weight: bold;
}

.contact-btn:hover {
  background: var(--secondary-color);
}

.contact-btn svg {
  margin-right: 0.5em;
}

.contact-btn.selected {
  background: var(--background-color);
  color: var(--primary-color)
}

label{
  display: inline-block;  /* or block */
  margin-bottom: .5em;
}
  
  /* Responsive Design for Nav and Hero Content */
  @media (max-width: 768px) {
    .nav-left {
      font-size: 1.2em;
    }
  }

  #faq {
    max-width: 800px;  /* container width (optional) */
    /* center the FAQ section with some vertical spacing */
    margin: 2em auto; 
    
  }

  #faq-container {
    margin: 0px auto;
    padding: 20px ;
  }
  #faq h2 {
    text-align: center;
    margin-bottom: 1em;
  }
  .faq-item {
    border-bottom: 1px solid #ccc;
    margin-bottom: 0.5em;
  }
  .faq-question {
    background: #f7f7f7;
    cursor: pointer;
    width: 100%;
    padding: 0.75em 1em;
    text-align: left;
    font-size: 1em;
    border: none;
    outline: none;
    transition: background 0.3s;
  }
  .faq-question::after {
    content: "+";
    float: right;
    font-weight: bold;
  }
  .faq-item.active .faq-question::after {
    content: "-";
  }
  .faq-question:hover {
    background: #eaeaea;
  }
  .faq-answer {
    display: none;
    padding: 0.5em 1em 1em 1em;
    background: #fff;
    line-height: 1.6;
  }
  .faq-item.active .faq-answer {
    display: block;
  }



  
/* Footer Styles */
footer {
  background-color: #333;
  color: #fff;
  padding: 2em 0;
  text-align: center;
}

.footer-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 20px;
}

.footer-nav {
  margin-bottom: 1em;
}

.footer-nav a {
  color: #fff;
  text-decoration: none;
  margin: 0 10px;
}

.footer-nav a:hover {
  text-decoration: underline;
}
