@font-face {
  font-family: 'Sansation';
  src: url('/assets/fonts/sansation/Sansation-Regular.ttf') format('woff2'),
  font-weight: 400;
  font-style: normal;
}




/* Font Setup */
body {
  margin: 0;
  font-family: 'Open Sans', sans-serif;
  background: #fff;
  color: #121212;
}

h1, h2, h3 {
  font-family: 'Montserrat', sans-serif;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

/* Color Palette */
:root {
  --primary: #3F7D58;
  --secondary: #262A2D;
  --grey-200: #F2F2F2;
  --font-400: #121212;
  --font-800: #636363;
}

/* ------------------------------------------------------------------------------------------------------ */

/* Navbar */
.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 40px 40px;
  position: relative;
  flex-wrap: wrap;
  background-color: white;
}

.logo {
  display: flex;
  align-items: center;
  height: 100px;
}

.logo img {
  width: 135.24px;
  height: 22.27px;
  object-fit: contain;
}

.menu {
  display: flex;
  gap: 18px;
  padding: 1px;
  background-color: var(--font-400);
  border-radius: 999px;
  list-style: none;
  align-items: center;
  margin: 0;
}

.menu li {
  color: white;
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 16px;
  cursor: pointer;
  transition: 0.3s ease;
}

.menu li.active {
  background-color: white;
  color: #1d1f20;
  font-weight: 500;
}

.auth-links {
  display: flex;
  gap: 20px;
  align-items: center;
  font-size: 14px;
}

.auth-links a {
  text-decoration: none;
  color: black;
}

.signup-btn {
  padding: 6px 14px;
  border: 1px solid black;
  border-radius: 20px;
  font-weight: 500;
  transition: 0.3s ease;
}

.signup-btn:hover {
  background-color: var(--primary);
  border: 1px solid var(--primary);
  color: white;
}

/* Hide toggle and hamburger by default */
.menu-toggle, .hamburger {
  display: none;
}





/* 1024px and below (Tablet) */
@media (max-width: 1024px) {
  .navbar {
    padding: 30px 24px;
    flex-direction: row;
  }

  .hamburger {
    display: block;
    font-size: 28px;
    cursor: pointer;
    margin-left: auto;
    order: 3;
    z-index: 1100;
    margin-top:-20px
  }
  

  .menu,
  .auth-links {
    display: none;
    flex-direction: column;
    align-items: center;
    width: 100%;
    background-color: white;
    border-radius: 0;
    padding: 20px 0;
    margin-top: 10px;
    /* box-shadow: 0 8px 12px rgba(0,0,0,0.05); */
    background:blue
  }

  .menu {
    background-color: transparent;
    order: 4;
  }

  .menu li {
    color: var(--font-400);
    background: none;
    width: 100%;
    text-align: center;
    padding: 10px 0;
  }

  .menu li.active {
    color: var(--primary);
    font-weight: bold;
  }

  .auth-links {
    order: 5;
    background: white;
    gap: 15px;
    padding-top: 0;
  }

  .auth-links a {
    width: auto;
    text-align: center;
  }

  .signup-btn {
    width: auto;
    padding: 6px 14px;
  border: 1px solid;
  border-radius: 1px;
  font-weight: 500;
  transition: 0.3s ease;
  }

  .menu-toggle:checked ~ .menu,
  .menu-toggle:checked ~ .auth-links {
    display: flex;
  }
}

/* 768px and below (Small Tablets / Large Phones) */
@media (max-width: 768px) {
  .navbar {
    padding: 24px;
    flex-direction: column;
    align-items: flex-start;
  }

  .logo {
    height: auto;
  }

  .hamburger {
    align-self: flex-end;
    margin-top:-60px
  }

  .menu,
  .auth-links {
    align-items: flex-center;
    
  }

  .menu li {
    text-align: center;
  }

  .auth-links a {
    text-align: left;
  }

.signup-btn {
    width: auto;
    /* max-width: 280px; */
    margin: 0 auto;
    display: block;
    text-align: center;
  }


}

/* 480px and below (Mobile Phones) */
@media (max-width: 480px) {
  .navbar {
    padding: 20px 16px;
  }

  .hamburger {
    font-size: 24px;
  }

  .menu li, .auth-links a {
    font-size: 15px;
  }

  .signup-btn {
    font-size: 15px;
    border:none;
      padding: none;
  border: 1px solid black;
  font-weight: 500;
  transition: 0.3s ease;
  }
}
/* ------------------------------------------------------------------------------------------------------ */

/* Hero / CTA */
.hero {
  padding: 30px 20px;
   text-align: center;
  display: flex;
  flex-direction:column;
  justify-content: center;
  align-items: center;
}

.hero-highlight {
  display: inline-flex;
  align-items: center;
  background: var(--grey-200);
  border-radius: 24px;
  padding: 4px 24px;
  gap: 16px;
  margin-bottom: 20px;
}

.indicator {
  width: 13px;
  height: 13px;
  background: var(--primary);
  border-radius: 50%;
}

.highlight-text {
  font-size: 14px;
  font-weight: 400;
    font-family: 'Sansation', sans-serif;

}

.hero-title {
  font-size: 74px;
  font-weight: 700;
  line-height: 100%;
  letter-spacing: -0.03em;
  margin: 20px 0;
    font-family: 'Sansation', sans-serif;

}

.hero-subtext {
  font-family: 'Open Sans', sans-serif;
  font-size: 20px;
  font-weight: 400;
  line-height: 100%;
  margin-bottom: 40px;
  color: var(--font-800);
}

.hero-button {
  width: 147px;
  height: 52px;
  background-color: var(--font-400);
  color: white;
  font-family: 'Sansation', sans-serif;
  font-size: 16px;
  font-weight: 400;
  letter-spacing: -0.03em;
  border: none;
  border-radius: 20px;
  padding: 16px 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.hero-button:hover {
  background-color: var(--primary);
}

.hero-arrow-icon {
  display: flex;
  align-items: center;
}



/* ------------------------------------------------------------------------------------------------------ */


/* Card Section */
.card-section {
  width: 100%;
  padding: 80px;
  box-sizing: border-box;
  background-color: #fff;
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
  max-width: 1280px;
  margin: 0 auto;
}

/* Common Card Style */
.card-type {
  display: flex;
  flex-direction: column;
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  max-width: 345px;
  flex: 1;
}

.card-type img {
  width: 100%;
  height: auto;
  border-radius: 20px;
  object-fit: cover;
}

.card-type h3 {
  font-family: 'Open Sans', sans-serif;
  font-weight: 500;
  font-size: 24px;
  line-height: 100%;
  letter-spacing: -0.03em;
  color: #121212;
  margin: 20px 0 2px;
}

.card-type p {
  font-family: 'Open Sans', sans-serif;
  font-weight: 100;
  font-size: 20px;
  line-height: 100%;
  letter-spacing: -0.03em;
  color: var(--font-800);
  margin-bottom: 2px;
}



/* ------------------------------------------------------------------------------------------------------ */


/* CTA */
.blog-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 0;
  font-family: 'Sansation', sans-serif;
  font-weight: 400;
  font-size: 18px;
  letter-spacing: -0.03em;
  text-decoration: none;
  transition: all 0.3s ease;
}

.read-more {
  color: var(--primary);
  text-decoration: none;
  margin-top: 0.5rem;
  font-weight: bold;
  position: relative;
}

.read-more:hover::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 100%;
  height: 2px;
  background-color:  var(--primary);
;
}

.arrow-icon {
  color: var(--primary);
  transition: transform 0.3s ease;
  margin-top: 0.5rem;
  font-size: 16px;
}

.blog-cta:hover .arrow-icon {
  transform: translateX(4px);
}

/* Card B Specific */
.card-b {
  max-width: 550px;
}

.card-b img {
  height: 35%;
}

/* Responsive */
@media (max-width: 992px) {
  .card-container {
    flex-direction: column;
    align-items: center;
  }

  .card {
    max-width: 100%;
  }
}

/* ------------------------------------------------------------------------------------------------------ */

/* future section */


.future-section {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  max-width: 1200px;
  margin: 100px auto;
  padding: 0 2rem;
  flex-wrap: wrap;
}

.year {
  font-family: 'Open Sans', sans-serif;
  font-weight: 500;
  font-size: 20px;
  letter-spacing: -0.03em; /* -3% */
  line-height: 100%;
  text-align: center;
  width: 44px;
  height: 27px;
  margin-top: 0px;
}

.bio-text {
  font-family: 'Open Sans', sans-serif;
  font-weight: 500;
  font-size: 20px;
  letter-spacing: -0.03em;
  line-height: 1.2;
  width: 630px;
  height: auto;
  margin-top: 0px;
  opacity: 1;
    color: var(--font-800);

}

.bio-text .biosynthesis {
  font-weight: 500;
  font-family: 'Open Sans', sans-serif; 
   color: var(--primary);


}

.hero-image-wrapper {
  width: 100%;
  max-width: 1440px;
  height: 500px; /* Adjust this height based on how much crop you want */
  overflow: hidden;
  margin: 0 auto 60px auto;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

/* ----------------------------------------------------------------------------------------------------------- */

/* image Row Section */
.card-wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
}

.card {
  position: relative;
  width: 240px;
  border-radius: 16px;
  overflow: hidden;
  text-align: center;
  transition: all 0.3s ease;
  padding-bottom:150px
}

.card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  max-width: 345px;
  flex: 1;
}

.card.zigzag {
  margin-top: 40px;
}

.card img {
  width: 100%;
  display: block;
  transition: transform 0.3s ease;
  border-radius: 16px;
}

/* "Get Started" Overlay */
.get-started {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  background: white;
  padding: 20px 0px 10px;
  transform: translateY(-100%);
  opacity: 0;
  transition: transform 0.3s ease, opacity 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 2;
}

.card:hover .get-started {
  transform: translateY(0);
  opacity: 1;
}

.card:hover .image-text {
  transform: translateY(100px);
}

/* Get Started Content */
.get-started h4 {
  font-size: 18px;
  margin: 0;
  line-height: 1.2;
  text-align: left;
    font-family: 'Open Sans', sans-serif;

}


.circle-btn {
  background: green;
  color: white;
  border-radius: 50%;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  cursor: pointer;
}

.card p {
  margin-top: 20px;
  font-weight: 500;
    text-align: right;

  
}

.slider-btn{
    display: flex;

  align-items: end;
    justify-content: end;

  
}

/* Responsive for tablets */
@media (max-width: 1024px) {
  .card-wrapper {
    justify-content: center;
    gap: 30px;
    padding: 0 20px;
  }

  .card {
    max-width: 45%;
    flex: 1 1 45%;
  }
}


/* Responsive for mobile */
@media (max-width: 768px) {
  .card-wrapper {
    flex-direction: column;
    align-items: center;
  }
.slider-btn{
    display: none;
  
}

  .card {
    width: 100%;
    max-width: 90%;
    padding-bottom: 30px;
  }

  .get-started {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    padding: 16px;
  }

  .circle-btn {
    align-self: flex-end;
  }

  .card p {
    text-align: center;
  }
}

/* Small mobile (extra responsiveness) */
@media (max-width: 480px) {
  .card {
    max-width: 95%;
    padding-bottom: 90px;
  }

  .get-started h4 {
    font-size: 16px;
  }

  .circle-btn {
    width: 32px;
    height: 32px;
    font-size: 18px;
  }
}


/* ----------------------------------------- */



/* cta banner */


.cta-banner {
  position: relative;
  width: 100%;
  height: 100vh;
  background: url('/assets/images/Cta_banner.png') center center/cover no-repeat;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: 80px;
  box-sizing: border-box;
  overflow: hidden;
}

.cta-content h2 {
  font-family: 'Sansation', sans-serif;
  font-weight: 400;
  font-size: 56px;
  line-height: 100%;
  letter-spacing: -0.03em;
  color: white;
  max-width: 545px;
}

.cta-button {
  position: absolute;
  bottom: 40px;
  right: 40px;
  width: 100px;
  height: 100px;
  cursor: pointer;
}

.cta-ellipse {
  width: 100%;
  height: 100%;
  background: #3F7D58;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: background 0.3s ease;
}

.cta-svg {
  position: absolute;
  transition: opacity 0.3s ease;
}

.default-svg {
  opacity: 1;
  z-index: 1;
}

.hover-svg {
  opacity: 0;
  z-index: 2;
}

.cta-ellipse:hover .default-svg {
  opacity: 0;
}

.cta-ellipse:hover .hover-svg {
  opacity: 1;
}



@media (max-width: 768px) {
  .cta-button {
    width: 70px;
    height: 70px;
    bottom: 20px;
    right: 20px;
  }

  .cta-ellipse {
    width: 70px;
    height: 70px;
  }

  .cta-banner {
    padding: 40px 20px;
    height: 80vh;
    flex-direction: column;
    align-items: flex-start;
  }

  .cta-content h2 {
    font-size: 36px;
  }
}


/* Green Growth */
.green-growth {
  width: 100%;
  padding: 80px 10px 40px 10px;
  background-color: #fff;
  box-sizing: border-box;
}

.green-growth .container {
  display: flex;
  align-items: flex-start; 
  justify-content: space-between;
  max-width: 1400px;
  margin: 0 auto;
  gap: 80px;
}

.left-content {
  flex: 1;
  max-width: 559px;
}

.right-content {
  flex: 1;
  max-width: 630px;
}

.left-content h2 {
  font-family: 'Sansation', sans-serif;
  font-weight: 400;
  font-size: 56px;
  line-height: 100%;
  letter-spacing: -0.03em;
  color: #121212;
  margin: 0;
  word-break: break-word;
}

.right-content p {
  font-family: 'Open Sans', sans-serif;
  font-weight: 500;
  font-size: 20px;
  line-height: 30px;
  letter-spacing: -0.03em;
  color: var(--font-800);
  margin: 0;
}

/* Responsive */
@media (max-width: 992px) {
  .green-growth .container {
    flex-direction: column;
    gap: 40px;
  }

  .left-content h2 {
    font-size: 42px;
    line-height: 110%;
  }

  .right-content p {
    font-size: 18px;
    line-height: 28px;
  }
}


/* ------------------------------------------------------------------------------------- */

/* Contact Form */
#contactform {
  width: 100%;
  max-width: 1280px;
  height: auto;
  border-radius: 20px;
  margin: 60px auto;
  padding: 40px;
  background-color: #fff;
  font-family: "Segoe UI", sans-serif;
  box-sizing: border-box;
}

.contact-container {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  border-radius: 20px;
  overflow: hidden;
  background: var(--grey-200);
}

.contact-left,
.contact-right {
  box-sizing: border-box;
}

.contact-left {
  width: 50%;
  padding: 5px 40px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.contact-left h2 {
  font-size: 42px;
  font-weight: 400;
  color: #1a1a1a;
  margin-bottom: 2px;
  font-family: 'Sansation', sans-serif;
}

.contact-left p {
  font-size: 20px;
  color: #555;
  line-height: 1.6;
  margin-bottom: 30px;
  font-family: 'Open Sans', sans-serif;
}

form {
  width: 100%;
  font-family: 'Open Sans', sans-serif;
}

.input-row {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.input-group {
  display: flex;
  flex-direction: column;
  flex: 1;
  min-width: 100px;
  margin-bottom: 20px;
}

.input-group label {
  font-size: 14px;
  color: #333;
  margin-bottom: 6px;
}

input,
textarea {
  padding: 10px 12px;
  border: 1px solid #ccc;
  border-radius: 12px;
  font-size: 14px;
  outline: none;
  transition: border 0.3s;
}

input:focus,
textarea:focus {
  border-color: #000;
}

button {
  width: 100%;
  padding: 12px;
  background-color: #1a1a1a;
  color: #fff;
  font-size: 16px;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  transition: background-color 0.3s;
}

button:hover {
  background-color: #333;
}

.contact-right {
  width: 50%;
  min-height: 400px;
  height: auto;
}

.contact-right img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 20px;
}


/* Tablet View */
@media (max-width: 1024px) {
  .contact-container {
    flex-direction: column;
  }

  .contact-left,
  .contact-right {
    width: 100%;
  }

  .contact-left {
    padding: 20px;
  }

  .contact-left h2 {
    font-size: 36px;
  }

  .contact-left p {
    font-size: 18px;
  }
}

/* Mobile View */
@media (max-width: 640px) {
  #contactform {
    padding: 20px;
  }

  .contact-left h2 {
    font-size: 28px;
  }

  .contact-left p {
    font-size: 16px;
  }

  .input-row {
    flex-direction: column;
  }

  button {
    font-size: 14px;
  }
}

/* --------------------------------------------------------------------------------------------------------------------- */

/* Footer */
.footer {
  background: var(--font-400, #111);
  color: white;
  padding: 60px 80px 150px;
  position: relative;
  font-family: 'Sansation', sans-serif;
  overflow: hidden;
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 40px;
  position: relative;
  z-index: 2;
}

.footer-left {
  max-width: 300px;
}

.logo {
  width: 213px;
  height: 48px;
  margin-bottom: 20px;
}

.tagline {
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 20px;
}

.social-icons {
  display: flex;
  gap: 12px;
  align-items: center;
}

.social-icons a {
  display: inline-flex;
  width: 24px;
  height: 24px;
  transition: opacity 0.2s ease;
}

.social-icons a:hover {
  opacity: 0.7;
}

.social-icons svg {
  width: 75%;
  height: 75%;
  fill: #A3A3A3;
}

.footer-columns {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
}

.column h4 {
  font-size: 14px;
  font-weight: 100;
  margin-bottom: 10px;
}

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

.column ul li {
  margin-bottom: 8px;
}

.column ul li a {
  text-decoration: none;
  color: var(--font-800, #ccc);
  font-size: 14px;
  transition: color 0.3s;
}

.column ul li a:hover {
  color: #00ffcc;
}

/* Container to restrict width of big text */
.footer-banner-wrapper {
  position: absolute;
  bottom: 0;
  left: 80px;
  right: 80px;
  height: 100px; /* Only show top half */
  overflow: hidden;
  z-index: 1;
}

/* The actual text */
.footer-banner-text {
  font-family: 'Sansation', sans-serif;
  font-weight: 700;
  font-size: 153px;
  line-height: 100%;
  letter-spacing: -3%;
  color: rgba(255, 255, 255, 0.2);
  text-align: center;
  white-space: nowrap;
}


/* Responsive adjustments */
@media (max-width: 1024px) {
  .footer {
    padding: 40px 40px 120px;
  }

  .footer-banner-wrapper {
    left: 40px;
    right: 40px;
    height: 80px;
  }

  .footer-banner-text {
    font-size: 100px;
  }

  .footer-columns {
    gap: 24px;
  }
}

@media (max-width: 768px) {
  .footer {
    padding: 40px 20px 100px;
  }

  .footer-banner-wrapper {
    left: 20px;
    right: 20px;
    height: 60px;
  }

  .footer-banner-text {
    font-size: 70px;
  }

  .footer-columns {
    display: grid;
    grid-template-columns: repeat(2, 1fr); 
    gap: 20px;
  }
}

@media (max-width: 480px) {
  .footer-banner-text {
    font-size: 40px;
  }

  .footer-columns {
    grid-template-columns: repeat(2, 1fr); 
  }
}



/* Responsive Typography */
@media (max-width: 768px) {
  .hero h1 {
    font-size: 42px;
  }
  .contact-form h2 {
    font-size: 42px;
  }
}
