:root {
  --primary: #1a4331;
  --muted: #9ca3af;
  --hover: #4b5563;
  --border: #e5e7eb;
}


body {
  font-family: "Playfair Display", serif;
}

.bodycolour1 {
  background: #f8fafc;
}

:root {
  --primary: #1a4331;
  --muted: #8e8e8e;
  --border: #e0e0e0;
  --font-serif: 'Georgia', serif;
}

.novelle-navbar {
  background: #F8FAFC;
  border-bottom: 1px solid #f0f0f0;
  /* padding: 0.5rem 0; */
  font-family: var(--font-serif);
   padding-top: 0px;
    padding-bottom: 0;
}

.navbar-brand img {
   height: 70px;
  width: 50px;
  

}

.novelle-navbar .nav-link {
  color: #8F8F8F;
 font-size: 1.2rem;
  font-weight: 400;
  padding: 0.5rem 0;
  margin: 0 0.5rem;
  position: relative;
  transition: color 0.3s ease;
}

.novelle-navbar .nav-link:hover {
  color: var(--primary);
}

.novelle-navbar .nav-link.active {
  color: var(--primary) !important;
}

.novelle-navbar .nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background-color: var(--primary);
  transition: width 0.3s ease;
}

.novelle-navbar .nav-link.active::after {
  width: 100%;
}

.dropdown-toggle::after {
  display: none;
}

.btn-novelle {
  background-color: var(--primary);
  color: #fff;
  /* padding: 10px 30px; */
  border-radius: 4px;
  border: 1px solid var(--primary);
  font-size: 1.1rem;
  transition: all 0.3s ease;
}

.btn-novelle:hover {
  background-color: #123023;
  color: #fff;
}

.btn-outline-novelle {
  background: transparent;
  color: var(--muted);
  /* padding: 10px 30px; */
  border-radius: 4px;
  border: 1px solid #cccccc;
  font-size: 1.1rem;
  transition: all 0.3s ease;
}

.btn-outline-novelle:hover {
  background-color: #f8f9fa;
  border-color: var(--muted);
  color: var(--primary);
}

/* Responsive Adjustments */
@media (max-width: 991.98px) {
  .novelle-navbar .nav-link::after {
    display: none;
  }

  .navbar-nav {
    padding: 0.5rem 0;
  }

  .nav-item {
    border-bottom: 1px solid #f8f9fa;
  }
}

/* Footer Container */
.novelle-footer {
  background: linear-gradient(135deg, #1f4d3a 0%, #0f2818 100%);
  color: #ffffff;
  padding-top: 40px;
  padding-bottom: 10px;
  padding-left: 50px;
  padding-right: 60px;
}

.footer-wrapper {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footer-content {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 40px;
  align-items: flex-start;
  position: relative;
}

.footer-column {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-brand {
  gap: 20px;
}

.footer-logo {
  width: 105px;
  height: 145px;
  object-fit: contain;
}

.footer-brand-title {
  font-family: 'Algerian';
  font-size: 48px;
  font-weight: 400;
  letter-spacing: 3px;
  line-height: 100%;
  font-style: regular;
  color: #ffffff;
}

.footer-brand-text {
  font-family: 'lora' serif;
  font-size: 18px;
  line-height: 150%;
  color: rgba(255, 255, 255, 0.85);
  font-style: regular;
  font-weight: 400;
}

.footer-section-heading {
  font-family: 'lora', serif;
  font-size: 24px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #ffffff;
  margin-bottom: 8px;
  line-height: 150%;
  font-style: semibold;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding-left: 0;
  margin-left: 0;
}


.footer-links li {
  margin-left: 0;
  padding-left: 0;
}


.footer-links a {
  font-family: 'lora';
  font-size: 20px;
  color: #ffffff;
  text-decoration: none;
  font-style: regular;
  transition: opacity 0.3s ease;
  font-weight: 400;
  line-height: 150%;
  letter-spacing: 0%;

}

.footer-links a:hover {
  opacity: 0.7;
}

.footer-social-container {
  position: absolute;
  bottom: 0;
  right: 0;
  display: flex;
  gap: 32px;
  align-items: center;
}

.social-link {
  color: rgba(255, 255, 255, 0.85);
  font-size: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.3s ease;
  text-decoration: none;
}

.social-link:hover {
  opacity: 0.7;
}

.footer-divider {
  width: 1250px;
  align-items: center;
  height: 3px;
  background-color: #3e3e3e;
}

.footer-copyright {
  text-align: center;
}

.footer-copyright p {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.5;
}

@media (max-width: 768px) {
  .novelle-footer {
    padding-top: 60px;
    padding-bottom: 40px;
    padding-left: 40px;
    padding-right: 40px;
  }

  .footer-content {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    position: relative;
    padding-bottom: 10px;
  }

  .footer-social-container {
    position: static;
    justify-content: center;
    gap: 24px;
    margin-top: 20px;
    width: 100%;
    grid-column: 1 / -1;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

  .footer-brand-title {
    font-size: 28px;
    letter-spacing: 2px;
  }

  .footer-section-heading {
    font-size: 16px;
    letter-spacing: 1.5px;
  }

  .footer-links a {
    font-size: 15px;
  }

  .social-link {
    font-size: 20px;
  }

  .footer-divider {
    width: 80%;
    height: 3px;
    margin: 25px auto;
  }
}

@media (max-width: 480px) {
  .novelle-footer {
    padding-top: 50px;
    padding-bottom: 30px;
    padding-left: 20px;
    padding-right: 20px;
  }

  .footer-wrapper {
    gap: 10px;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 14px;
    padding-bottom: 10px;
  }

  .footer-brand {
    align-items: flex-start;
  }

  .footer-logo {
    width: 100px;
  }

  .footer-brand-title {
    font-size: 24px;
    letter-spacing: 2px;
  }

  .footer-brand-text {
    font-size: 14px;
    line-height: 1.5;
  }

  .footer-section-heading {
    font-size: 14px;
    letter-spacing: 1px;
    margin-bottom: 6px;
  }

  .footer-links a {
    font-size: 14px;
  }

  .footer-social-container {
    justify-content: center;
    gap: 20px;
    margin-top: 10px;
  }

  .social-link {
    font-size: 18px;
  }

  .footer-divider {
    width: 90%;
    height: 2.5px;
    margin: 20px auto;
  }


  .footer-copyright p {
    font-size: 14px;
  }
}

@media (min-width: 800px) and (max-width: 1050px) {
  .footer-divider {
    width: 90%;
    max-width: 700px;
    height: 3px;
    margin: 25px auto;
  }
}

@media (min-width: 850px) and (max-width: 1070px) {
  .footer-divider {
    width: 85%;
    max-width: 650px;
    height: 3px;
    margin: 25px auto;
  }
}

a {
  text-decoration: none;
}

.bi {
  display: inline-block;
}

@media print {
  .novelle-footer {
    page-break-inside: avoid;
  }
}

.hero-container {
  padding: 1.3rem 3.5rem;
}

.hero-title {
  font-family: 'Playfair Display';
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  line-height: 1.1;
  color: #1a2b3c;
  padding-right: 25px;
}

.container {
  flex-wrap: wrap;
  gap: 0;
}

.mainw {
  flex: 0 0 45%;
  max-width: 45%;
}

.mains {
  flex: 0 0 55%;
  max-width: 55%;
}

@media (max-width: 991px) {

  .mainw{
    text-align: center;
  }
  .mains {
    flex: 0 0 100%;
    max-width: 100%;
  }
}


.hero-description {
  line-height: 150%;
  font-size: 24px;
  color: #1E293B;
  /* max-width: 600px; */
  /* letter-spacing: 0.5px; */
  margin-top: 1.5rem;
  font-family: serif;
  font-weight: 500;
  margin-bottom: 38px;
}

.hero-actions {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: flex-start;
}

@media (max-width: 991px) {
  .hero-actions {
    justify-content: center;
  }
}

@media (max-width: 576px) {
  .hero-actions {
    flex-direction: column;
    align-items: center;
    gap: 14px;
  }
}


.btn-explore {
  border: 1px solid #1a2b3c;
  padding: 10px 35px;
  color: #1a2b3c;
  transition: 0.3s;
  font-size: 1.35rem;
  border-radius: 2px 2px 2px 2px;
}

.btn-explore:hover {
  background: #1a2b3c;
  color: #fff;
}

.btn-join {
  background: #1e3a34;
  padding: 10px 30px;
  color: #fff;
}

.join-wrapper {
  position: relative;
}

.v-badge {
  position: absolute;
  top: -14px;
  left: 18px;
  background: #9fa8da;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  color: #fff;
  font-size: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}


.hero-gallery {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  margin: 40px auto 0;
  flex-wrap: wrap;
  /* font-size: 0;
  letter-spacing: -6px; */
  gap: 0;
}

.hero-gallery>img,
.image-stack {
  height: clamp(150px, 18vw, 260px);
  flex-shrink: 0;
  display: block;
}

.hero-gallery>img {
  object-fit: contain;
  margin: 0;
  padding: 0;
  vertical-align: bottom;
}


.image-stack {
  position: relative;
  width: auto;
}

.image-stack .base-img {
  width: 100%;
  height: 100%;
  display: block;
}

.image-stack .top-img {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  /* width: clamp(85px, 9vw, 150px); */
  height: auto;
  z-index: 2;
}


@media (min-width: 1400px) {
  .hero-gallery {
    margin-top: 60px;
  }
}

/* Medium screens */
@media (max-width: 991px) {

  /* Hide direct img children, keep only .image-stack */
  .hero-gallery>img {
    display: none;
  }

  .hero-gallery .image-stack {
    display: block;
  }
}

/* Small screens */
@media (max-width: 576px) {
  .hero-gallery {
    gap: 6px;
  }

  .hero-gallery>img {
    display: none;
  }

  .hero-gallery .image-stack {
    display: block;
    height: clamp(150px, 85vw, 150px);
  }

  .hero-gallery .image-stack .base-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .hero-gallery .image-stack .top-img {
    height: auto;
    max-height: 80%;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    position: absolute;
    z-index: 2;
  }

  .image-stack .top-img {
    max-height: 60%;
  }
}



.legend-row {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-top: 50px;
  font-size: 24px;
  line-height: 150%;
  /* margin-bottom: 10px; */
  flex-wrap: wrap;
}

.legend-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #4c4c4c;
  font-family: serif;

}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.blue {
  background: #3182ce;
}

.green {
  background: #48bb78;
}

.yellow {
  background: #ecc94b;
}

.red {
  background: #f56565;
}

.purple {
  background: #9f7aea;
}

@media (max-width: 991px) {

  .hero-title{
    text-align: center;
  }
  .hero-description {
    text-align: center;
    margin: auto;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-gallery img {
    width: 110px;
    height: 110px;
  }
}

@media (max-width: 576px) {
  .hero-gallery img {
    width: 90px;
    height: 90px;
  }
}


.faq-section {
  font-family: serif;
}

.faq-main-heading {
  font-family: 'Lora', serif;
  font-weight: 700;
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  color: #1a2b3c;
  line-height: 1.1;
}

.faq-subtitle {
  font-size: 1.5rem;
  max-width: 400px;
  font-family: serif;
}

.faq-card {
  background: #ffffff;
  /* border-radius: 12px; */
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  transition: transform 0.2s ease;
  border: 3px rgba(117, 115, 115, 0.05);
}

.faq-card .accordion-item {
  background: transparent;
}

.custom-faq-btn {
  font-family: 'lora', serif;
  font-size: 24px;
  font-weight: 500;
  color: #000000 !important;
  background-color: transparent !important;
  /* padding: 2rem 1.5rem; */
  box-shadow: none !important;
  justify-content: space-between;
  line-height: 150%;
}

.custom-faq-btn::after {
  display: none;
}

.faq-content {
  font-size: 20px;
  color: #1e293b;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  font-family: serif;
}

.faq-icon-wrapper {
  width: 45px;
  height: 45px;
  background-color: #1a2b3c;
  /* Dark navy color */
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.faq-icon-wrapper i {
  font-size: 1.8rem;
}

.custom-faq-btn:not(.collapsed) .faq-icon-wrapper {
  transform: rotate(90deg);
}

@media (max-width: 991px) {
  .faq-main-heading {
    font-size: 2.5rem;
  }

  .faq-subtitle {
    max-width: 100%;
  }
}


.section-tag {
  font-size: 1.8rem;
  letter-spacing: 2px;
  font-weight: 900;
  color: #1c5c3d;
  font-size: 1.5rem;
  font-family: serif;
}


.modal-overlay {
  position: fixed;
  inset: 0;
background: rgba(42, 39, 39, 0.914);
  display: none;
  justify-content: center;
  align-items: flex-start;
  padding: 60px 5px 5px;
  z-index: 2000;
}

.modal-overlay.show {
  display: flex;
}

.modal-overlay.show .modal-content {
  transform: translateY(40px);
}


.modal-content {
  background: #fff;
  width: 100%;
  max-height: 78vh;
  border-radius: 6px;
  position: relative;
  display: flex;
  flex-direction: column;
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.18);
  overflow: hidden;
}

.modal-compact {
  max-width: 620px;
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 18px;
  font-size: 1.6rem;
  background: none;
  border: none;
  cursor: pointer;
  color: #333;
  z-index: 2;
}

.modal-scroll-container {
  overflow-y: auto;
  padding: 1.4rem 2rem 1rem;
  flex: 1;
}

.modal-scroll-container::-webkit-scrollbar {
  width: 6px;
}

.modal-scroll-container::-webkit-scrollbar-thumb {
  background: #ccc;
  border-radius: 10px;
}

.modal-header {
  display: flex;
  align-items: baseline;
  gap: 0.8rem;
  flex-wrap: wrap;
  margin-bottom: 1.2rem;
}

.modal-header h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 600;
  margin: 0;
  white-space: nowrap;
}

.modal-header .subtitle {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  color: #292828;
  margin: 0;
  white-space: nowrap;
}

@media (max-width: 768px) {
  .modal-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.3rem;
  }

  .modal-header h2 {
    font-size: 1.6rem;
    white-space: normal;
  }

  .modal-header .subtitle {
    font-size: 0.95rem;
    white-space: normal;
  }
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.6rem 1.4rem;
}

.field-group {
  margin-bottom: 1rem;
}

label {
  font-family: 'Playfair Display', serif;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  margin-bottom: 0.6rem;
  display: block;
}

.instruction {
  font-size: 0.95rem;
  color: #292828;
  margin-bottom: 0.8rem;
}

.input-field {
  width: 100%;
  background: #f5f6f3;
  border: none;
 padding: 0.5rem;
  font-size: 0.95rem;
  border-radius: 2px;
  outline: none;
  color: #444;
}

.select-custom {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%23333' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14 2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
}

.form-footer {
  padding: 1.2rem 2.6rem;
  border-top: 1px solid #eee;
  display: flex;
  justify-content: flex-end;
}

.btn-submit {
  background: #1a4332;
  color: #fff;
  padding: 0.8rem 1.6rem;
  border: none;
  border-radius: 3px;
  font-size: 0.95rem;
  cursor: pointer;
}

@media (max-width: 768px) {
  .modal-compact {
    max-width: 96%;
  }

  .form-grid {
    grid-template-columns: 1fr;
  }

  .modal-scroll-container {
    padding: 1.6rem 1.4rem;
  }

  .form-footer {
    padding: 1rem 1.4rem;
  }

  .btn-submit {
    width: 100%;
  }
}

.cta-btn {
  display: inline-block;
  font-family: serif;
  background-color: #166534;
  color: #ffffff;
  padding: 12px 32px;
  font-size: 1.25rem;
  font-weight: 500;
  border: none;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.cta-btn:hover {
  background-color: #14532d;
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  .cta-btn {
    font-size: 1rem;
    padding: 10px 24px;
  }
}

@media (max-width: 480px) {
  .cta-btn {
    width: 100%;
    text-align: center;
    font-size: 0.95rem;
    padding: 12px;
  }
}

.features-section {
  padding: 80px 0;
  background: #fff;
}

.features-wrapper {
  max-width: 1300px;
  margin: auto;
  padding: 0 24px;
}

.features-header {
  text-align: center;
  margin-bottom: 80px;
}

.features-label {
  font-size: 24px;
  line-height: 150%;
  font-weight: 600;
  font-family: 'lora';
  color: #1f4d3a;
}


.features-title {
  font-size: 48px;
  margin-top: 12px;
  font-family: 'lora';
  font-weight: 600;
  color: #333333;
  line-height: 100%;
}

.features-title-head {
  font-size: 48px;
  /* margin-top: 12px; */
  font-family: 'lora';
  font-weight: 600;
  color: #333333;
  line-height: 100%;
}

.features-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.feature-card1 {
  background: #f3f5f2;
  padding: 40px 32px;
  min-height: 300px;
  box-shadow: 0 8px 3px rgba(0, 0, 0, 0.05);
  position: relative;
  border-radius: 42px 813px 31px 24px;
  border-left: 2px solid rgb(85, 85, 85);
}

.cut-right {
  clip-path: ellipse(100% 100% at 100% 50%);
}

.feature-card1 h3 {
  font-size: 24px;
  line-height: 150%;
  font-style: medium;
  font-weight: 500;
  margin-bottom: 12px;
  font-family: 'lora', serif;
}

.feature-card1 p {
  font-size: 20px;
  color: #4c4c4c;
  list-style: regular;
  line-height: 150%;
  font-family: 'lora', serif;
}


.feature-card2 {
  background: #f3f5f2;
  padding: 40px 32px;
  min-height: 300px;
  box-shadow: 0 8px 3px rgba(0, 0, 0, 0.05);
  position: relative;
  border-radius: 50px 8px 215px 0px;
  border-left: 2px solid rgb(85, 85, 85);
}

.cut-left {
  clip-path: ellipse(100% 100% at 0% 50%);
}

.cut-right {
  clip-path: ellipse(100% 100% at 100% 50%);
}

.feature-card2 h3 {
  font-size: 24px;
  line-height: 150%;
  font-style: medium;
  font-weight: 500;
  margin-bottom: 12px;
  font-family: 'lora', serif;
}

.feature-card2 p {
  font-size: 20px;
  color: #4c4c4c;
  list-style: regular;
  line-height: 150%;
  font-family: 'lora', serif;
}


.feature-card3 {
  background: #f3f5f2;
  padding: 40px 32px;
  min-height: 300px;
  box-shadow: 0 8px 3px rgba(0, 0, 0, 0.05);
  position: relative;
  border-radius: 56px 0px 0px 56px;
  border-left: 2px solid rgb(85, 85, 85);
}

.cut-left {
  clip-path: ellipse(100% 100% at 0% 50%);
}

.cut-right {
  clip-path: ellipse(100% 100% at 100% 50%);
}

.feature-card3 h3 {
  font-size: 24px;
  line-height: 150%;
  font-style: medium;
  font-weight: 500;
  margin-bottom: 12px;
  font-family: 'lora', serif;
}

.feature-card3 p {
  font-size: 20px;
  color: #4c4c4c;
  list-style: regular;
  line-height: 150%;
  font-family: 'lora', serif;
}


.feature-card4 {
  background: #f3f5f2;
  padding: 40px 32px;
  min-height: 300px;
  box-shadow: 0 8px 3px rgba(0, 0, 0, 0.05);
  position: relative;
  border-radius: 0px 587px 215px 193px;
  border-left: 2px solid rgb(85, 85, 85);
}

.cut-left {
  clip-path: ellipse(100% 100% at 0% 50%);
}

.cut-right {
  clip-path: ellipse(100% 100% at 100% 50%);
}

.feature-card4 h3 {
  font-size: 24px;
  line-height: 150%;
  font-style: medium;
  font-weight: 500;
  margin-bottom: 12px;
  font-family: 'lora', serif;
}

.feature-card4 p {
  font-size: 20px;
  color: #4c4c4c;
  list-style: regular;
  line-height: 150%;
  font-family: 'lora', serif;
}

.icon-area {
  position: relative;
  height: 60px;
  margin-bottom: 24px;
}

.icon {
  position: absolute;
}

.square-green {
  width: 42px;
  height: 42px;
  background: #80D9A3;
}


.circle-yellow {
  width: 41px;
  height: 41px;
  background: #facc15;
  border-radius: 50%;
  left: 22px;
  top: 22px;
}

.pill-yellow {
  width: 20px;
  height: 35px;
  left: 3px;
  top: -1px;
  border-radius: 1000px;
  background: #f9dc54;
  border-radius: 10px;
}

.semi-orange {
  width: 41px;
  height: 24px;
  background: #f9af4e;
  border-radius: 0 0 22px 22px;
  left: 0.5px;
  top: 35px;
}

.pill-blue {
  width: 20px;
  height: 32px;
  background: #1f7cff;
  border-radius: 10px;
}

.bar-pink {
  width: 70px;
  height: 22px;
  background: #f9bbc6;
  border-radius: 1000px;
  left: 0.5px;
  top: 33px;
}

.circle-green {
  width: 42px;
  height: 42px;
  background: #22c55e;
  border-radius: 1000px;
}

.circle-red {
  width: 20px;
  height: 20px;
  background: #dc2626;
  border-radius: 1000px;
  left: 42px;
  top: 35px;
}

@media (max-width: 1200px) {
  .features-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .features-container {
    grid-template-columns: 1fr;
  }

  .cut-left,
  .cut-right {
    clip-path: none;
    border-radius: 20px;
  }
}

.section-tag {
  color: #2d4a3e;
  font-size: 0.9rem;
  letter-spacing: 1.5px;
}

.why-main-heading {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  font-weight: 700;
  color: #1a1a1a;
}

.why-item {
  margin-bottom: 2rem;
}

.why-item h5 {
  font-family: 'lora', serif;
  font-size: 24px;
  font-weight: 500;
  color: #1E293B;
  margin-bottom: 5px;
  line-height: 150%;
}

.why-item p {
  font-family: 'lora', serif;
  font-size: 20px;
  color: #4c4c4c;
  line-height: 150%;
  font-weight: 400;
  margin: 0;
}

.illustration-container {
  padding: 30px;
  border: 2px dashed #b5b5b5;
  border-radius: 60px;
  display: inline-block;
}

.quadrant-grid {
  display: grid;
  grid-template-columns: repeat(2, 200px);
  grid-template-rows: repeat(2, 200px);
  gap: 10px;
}

.quad-box {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.leaf-top-left {
  border-radius: 100px 0 100px 100px;
}

.leaf-top-right {
  border-radius: 100px 100px 100px 0;
}

.leaf-bottom-left {
  border-radius: 100px 0 100px 100px;
}

.leaf-bottom-right {
  border-radius: 100px 100px 0 100px;
}

.bg-yellow {
  background-color: #eab308;
}

.bg-dark-green {
  background-color: #1a4331;
}

.quad-img {
  width: 90%;
  height: auto;
  object-fit: contain;
}

@media (max-width: 991px) {
  .quadrant-grid {
    grid-template-columns: repeat(2, 150px);
    grid-template-rows: repeat(2, 150px);
  }

  .why-main-heading {
    font-size: 2.2rem;
  }
}

.audience-row>div {
  display: flex;
  justify-content: center;
}

.audience-img {
  width: 100%;
  max-width: 360px;
  height: auto;
  object-fit: contain;
  display: block;
}

@media (min-width: 1200px) {
  .audience-img {
    max-width: 380px;
  }
}

@media (max-width: 991px) {
  .audience-img {
    max-width: 340px;
  }
}

@media (max-width: 575px) {
  .audience-img {
    max-width: 100%;
  }
}

.mainbg {
  background: #F3F5F2;
}

.featurebg {
  background-color: #F8FAFC;
  ;
}

.join-btn {
  display: inline-block;
  font-family: serif;
  background-color: #166534;
  color: #ffffff;
  padding: 12px 32px;
  font-size: 1.35rem;
  font-weight: 500;
  border: none;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.2s ease;
  text-decoration: none;
}

.join-btn:hover {
  background-color: #14532d;
  transform: translateY(-2px);
  text-decoration: none;
}

@media (max-width: 768px) {
  .join-btn {
    font-size: 1rem;
    padding: 10px 24px;
  }
}

@media (max-width: 480px) {
  .join-btn {
    width: 100%;
    text-align: center;
    font-size: 0.95rem;
    padding: 12px;
  }
}


.hero-title {
  font-family: "Playfair Display";
  letter-spacing: -0.5px;

}

.hero-subtitle {
  font-family: "serif";
  line-height: 1.4;
  white-space: nowrap;
  color: rgb(83, 82, 82);

}

.hero-img-container img {
  max-width: 100%;
  height: auto;
  transform: scale(1.05);
}

@media (max-width: 991px) {
  .hero-subtitle {
    white-space: normal;
    text-align: center;
    color: rgb(83, 82, 82);
  }

  .hero-section {
    padding: 1.75rem 0;
  }

  .hero-container {
    padding-left: 3.5rem;
    padding-right: 2.5rem;
  }

  .hero-img-container img {
    transform: scale(1);
  }
}


.hero-illustration {
  max-width: 100%;
  height: auto;
  width: clamp(260px, 45vw, 520px);
  object-fit: contain;
}

@media (max-width: 991px) {
  .hero-illustration {
    width: clamp(240px, 60vw, 420px);
  }
}

@media (max-width: 576px) {
  .hero-illustration {
    width: 90%;
  }
}


.input-field.invalid {
  border: 1px solid red;
}

.error-message {
  color: red;
  font-size: 0.8rem;
  display: none;
}

.input-field.invalid+.error-message {
  display: block;
}


.toaster {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.toaster-message {
  background-color: #333;
  color: #fff;
  padding: 12px 20px;
  border-radius: 5px;
  min-width: 200px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  opacity: 0;
  transform: translateX(100%);
  transition: all 0.5s ease;
}

.toaster-message.show {
  opacity: 1;
  transform: translateX(0);
}

.toaster-message.success {
  background-color: #28a745;
}

.toaster-message.error {
  background-color: #dc3545;
}

/* Join community css */

/* Highlight invalid input */
.input-field.error {
  border: 1.5px solid #dc3545;
  background: #fff5f5;
}

/* Error message style */
.error-message {
  display: none;
  color: #dc3545;
  font-size: 0.85rem;
  margin-top: 4px;
}


