:root {
  --bg: #0b0f0c;

  --primary-green: #1f6b3a;
  --primary-hover: #2f8a4f;

  --dark-green: #14351f;
  --deep-green: #03221B;

  --accent-green: #3fbf6b;

  --text: #ffffff;
  --muted-text: #cbd5c0;
  --body: #f5f5f5;
}
body {
  font-family: 'Poppins', sans-serif;
}

h2, h3 {
  font-family: 'Lato', sans-serif;
  letter-spacing: 1px;
}
html, body {
  margin: 0;
  padding: 0;
  height: auto;
}

body {
  margin: 0;
  font-family: sans-serif;
  background: var(--body);
  /*background-image: url("brush.jpg");Scrolling background image*/
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
  text-align: center;
}
main {
  width: 100%;
}
.placeholder{
  display: flex;
  flex-direction: column;
  align-items: center;
}
.horizontal{
  display: flex;
  flex-direction: row;
  align-items: center;
}
.footer {
  background: rgba(255, 255, 255, 0.9);
  padding: 30px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}



.footer p {
  font-size: 14px;
  opacity: 0.7;
  margin: 0;
}
.footer-actions {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-bottom: 15px;
  flex-wrap: wrap;
}

.footer-actions a {
  color: white;
  text-decoration: none;
  padding: 8px 14px;
  border: 1px solid white;
  border-radius: 4px;
  transition: all 0.3s ease;
}
.footer-actions a:hover {
  background: white;
  color: black;
}


.header {
  position: sticky;
  top: 0;
  z-index: 1000;

  display: flex;
  align-items: center;
  justify-content: center;
  gap: 50px;
/*  justify-content: space-between;*/

  padding: 16px 32px;
  background: rgba(255, 255, 255, 0.9);

  border-bottom: 1px solid #eee;

  font-family: sans-serif;
}

.hamburger {
  display: none;
  font-size: 26px;
  background: none;
  border: none;
  cursor: pointer;
  color: #0f172a;
}

/* MOBILE STYLES */
@media (max-width: 768px) {
  .header {
    flex-wrap: wrap;
    align-items: center;
  }

  /* hide on mobile */
  .nav,
  .cta-button {
    display: none;
    visibility: hidden;
    width: 100%;
  }

  .hamburger {
    display: block;
  }

  .nav.active {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 12px 0;
  }

  .cta-button.active {
    display: inline-block;
    margin-top: 10px;
  }
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 500;
  color: #0f172a;
}

.logo-box {
  width: 32px;
  height: 32px;
  background: #10b981;
  border-radius: 6px;
}

.nav {
  display: flex;
  gap: 24px;
}

.nav a {
  text-decoration: none;
  color: #475569;
  font-size: 14px;
  transition: 0.2s ease;
}

.nav a:hover {
  color: #10b981;
}

.cta-button {
  background: #0f172a;
  color: white;
  text-decoration: none;

  padding: 10px 18px;
  border-radius: 999px;

  font-size: 14px;
  font-weight: 500;

  transition: 0.2s ease;
}

.cta-button:hover {
  background: #1e293b;
}


.section-dark {
  background: var(--deep-green);
  color: var(--text);
  padding-bottom: 20px;
  padding-top: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.button {
  background: var(--primary-green);
  color: white;
  border-radius: 999px;
  transition: 0.2s ease;
}

.button:hover {
  background: var(--primary-hover);
}

.box {
  width: 800px;
  max-width: 90%;
  padding-bottom: 50px;
  margin-left: 50px;
  margin-right: 50px;
  background: rgba(255, 255, 255, 0.75);
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
  color: black;
  text-align: center;
}


* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}

body {
  background: #f6f8fb;
  color: #0f172a;
}

.hero {
  display: flex;
  gap: 20px;
  padding: 80px 8%;
  align-items: center;
  justify-content: space-between;
}

.left {
  flex: 1;
  max-width: 600px;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #e7f7ef;
  color: #0f9d6a;
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 14px;
  margin-bottom: 20px;
  font-weight: 500;
}

.dot {
  width: 8px;
  height: 8px;
  background: #0f9d6a;
  border-radius: 50%;
}

h1 {
  font-family: 'Lato', sans-serif;
  line-height: 1.05;
  margin-bottom: 20px;
  font-weight:300;
  letter-spacing: 2px;
  font-size:78px;
}
h1 span {
  color: #059669;
}

p {
  font-size: 18px;
  line-height: 1.6;
  opacity: 80%;
  margin-bottom: 30px;
  max-width: 520px;
}

.buttons {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-bottom: 40px;
}

.btn {
  padding: 14px 22px;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 600;
  cursor: default;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.btn-primary {
  background: #059669;
  color: white;
  transition: transform 0.4s ease, background-color 0.4s ease;
}
.btn-primary:hover {
  background: white;
  color: #059669;
}

.btn-secondary {
  border: 1px solid #cbd5e1;
  color: #0f172a;
  background: white;
  transition: transform 0.4s ease, background-color 0.4s ease;
}
.btn-secondary:hover {
  color: white;
  background: #0f172a;
}

.stats {
  display: flex;
  justify-content: center;
  gap: 30px;
  color: #64748b;
  font-weight: 500;
}
.stats p {
  font-size: 15px;
  color: #0b0f0c;
  opacity: 70%;
}

.stats-box{
  width: 500px;
  padding: 10px;
  margin-bottom: 20px;
  margin-left: 50px;
  margin-right: 50px;
  background: rgba(255, 255, 255, 0.75);
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
  color: black;
  text-align: center;
}

.stats div {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.stats strong {
  font-size: 22px;
  color: #0f172a;
}

.right {
  flex: 1;
  position: relative;
  min-height: 520px;
}

.image-box {
  position: relative;
  width: 100%;
  height: 520px;
  border-radius: 24px;
  overflow: hidden;
/*  background: #d1d5db;*/
}

.image-box img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}



@media (max-width: 900px) {
  .hero {
    flex-direction: column;
    padding: 50px 6%;
  }

  h1 {
    font-size: 44px;
  }

  .right {
    width: 100%;
  }
}

.stars {
  gap: 5px;
}
.star {
  width: 24px;
  height: 24px;
  color: #ff4000;
  fill: #8ec73d;
  stroke: #8ec73d;
}

.star2 {
  width: 24px;
  height: 24px;
  color: #ff4000;
  fill: #fff;
  stroke: #8ec73d;
}

select {
  padding: 8px;
  border-radius: 4px;
  border: 1px solid #ccc;
  background: white;
}

.contact-form {
  max-width: 500px;
  margin: 60px auto;
  margin-top: 0px;
  padding: 30px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  font-family: sans-serif;
}

.form-group {
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
}

label {
  margin-bottom: 6px;
  font-weight: 600;
  color: #333;
}

input,
textarea {
  padding: 12px 14px;
  border: 1px solid #ddd;
  border-radius: 12px;
  font-size: 14px;
  outline: none;
  transition: border-color ease-in-out 0.7s;
  min-height: 2em;
  resize: vertical;
}

input:focus,
textarea:focus {
  border-color: #3b5998;
  box-shadow: 0 0 0 3px rgba(59, 89, 152, 0.15);
}
.contact {
  padding: 20px;
}

.options {
  display: flex;
  gap: 10px;
  margin-top: 8px;
}

.option {
  flex: 1;
  text-align: center;
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 999px;
  cursor: pointer;
  transition: 0.2s ease;
  user-select: none;
}

.option input {
  display: none;
}

.option:has(input:checked) {
  background: var(--primary-green);
  color: white;
}

.submit-btn {
  width: 100%;
  padding: 14px;
  border: none;
  border-radius: 999px;
  background: var(--primary-green);
  color: white;
  font-size: 16px;
  cursor: pointer;
  transition: 0.2s ease;
}

.submit-btn:hover {
  background: var(--primary-hover);
  transform: translateY(-1px);
}

.submit-btn:disabled {
  background: #999;
  cursor: not-allowed;
  opacity: 0.6;
}

textarea {
  resize: vertical;
  line-height: 1.4;
  font-size: 16px;
}


.blocky {
  display: inline-flex;
  align-items: center;
  gap: 15px;
  padding: 10px 16px;
  border-radius: 10px;
  background: var(--primary-green);
  color: #fff;
  text-decoration: none;
  transition: background 0.4s ease, color 0.4s ease;
}

.blocky:hover {
  background: #fff;
  color: #000;
}
.cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.fa {
  font-size: 30px;
}

