/* Navigation Bar */
/* Responsive Design */
@media screen and (max-width: 768px) {
  .navbar {
      flex-direction: column;
      align-items: flex-start;
  }
  .auth-buttons button {
    padding-top: 5%;
    width: auto; /* Ensure buttons do not stretch */
}
}
html, body {
  width: 100%;
  height: 100%;
  margin: 0px;
  padding: 0px;
  overflow-x: hidden;
}


/* Hamburger Icon */
.hamburger {
  display: none;
  font-size: 30px;
  cursor: pointer;
  color: white;
  padding: 10px;
}

/* Navigation Links */
.nav-links {
  list-style-type: none;
  display: flex;
  margin: 0;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #faf3ec; /* Keeps the navigation bar visually separate */
  padding: 10px 20px;
  z-index: 100; /* Ensure the navbar is above other elements */
  position: relative; /* Makes z-index effective */
}


.logo {
  padding-left: 25px; /* Moves the logo slightly to the right */
  flex-shrink: 0; /* Prevents the logo from shrinking */
}

.logo img {
  height: 50px; /* Adjust the height of the logo */
}

/* Make the nav-links bold and bigger */
.nav-links {
  display: flex;
  flex-grow: 2; /* Make the nav-links take up more space */
  justify-content: center; /* Centers the links in the available space */
  list-style: none;
}

.nav-links li {
  margin: 0 30px; /* Adjust the space between links */
}

.nav-links li a {
  color: black;
  text-decoration: none;
  padding: 8px 12px;
  font-size: 18px; /* Slightly bigger font size */
  font-weight: bold; /* Makes the text bold */
  position: relative; /* Needed for the underline effect */
  transition: color 0.3s;
}

/* Underline effect on hover */
.nav-links li a:hover {
  color: #00bf63; /* Change text color on hover */
}

.nav-links li a::after {
  content: ""; /* Creates a pseudo-element for the underline */
  display: block;
  height: 2px; /* Thickness of the underline */
  background-color: #00bf63; /* Color of the underline */
  width: 100%; /* Makes the underline span the full width of the link */
  position: absolute; /* Positions the underline */
  left: 0; /* Aligns the underline with the left of the link */
  bottom: -4px; /* Positions the underline below the text */
  transform: scaleX(0); /* Initially hide the underline */
  transition: transform 0.3s ease; 
}

/* Show underline on hover */
.nav-links li a:hover::after {
  transform: scaleX(1); /* Show the underline */
}

.auth-buttons {
  display: flex;
  flex-shrink: 0; /* Prevents auth buttons from shrinking */
}

.auth-buttons button {
  background-color: #238b45;
  border: 1px solid black; 
  color: white;
  padding: 8px 25px;
  margin-left: 15px;
  border-radius: 4px;
  cursor: pointer;
  width: 150px; 
  height: 50px; 
  font-size: 16px; 
  font-weight: bold; 
  transition: background-color 0.3s;
}

.auth-buttons button:hover {
  background-color: #238b45;
}

.auth-buttons .get-started {
  background-color: #65be7d;
}

.auth-buttons .get-started:hover {
  background-color: #41ab5d;
}
/* Navigation Bar End */

body {
margin:0;
background-color: #faf3ec;
}

h1 {
font-family: 'Lato', sans-serif;
font-weight:300;
letter-spacing: 2px;
font-size:48px;
}
p {
font-family: 'Montserrat', Helvetica, Arial, 'Lucida Sans', sans-serif;
letter-spacing: 0.5px;
font-size:14px;
color: #000000;
}

.header {
position:relative;
text-align:center;
background: linear-gradient(60deg, #faf3ec 0%, #faf3ec 100%);
color:white;
}

.inner-header {
height:65vh;
width:100%;
margin: 0;
padding: 0;
}

.flex { /*Flexbox for containers*/
display: flex;
justify-content: center;
align-items: center;
text-align: center;
}



.content {
position:relative;
height:20vh;
text-align:center;
background-color: white;
}



/* Hero Section Styling */
.hero-section {
  display: flex; /* Creates a side-by-side layout */
  justify-content: space-between;
  align-items: center;
  padding: 50px 20px;
  max-width: 1200px; /* Limit the width to avoid stretching on larger screens */
  margin: 0 auto; /* Center the content horizontally */
  z-index: 10; /* Ensure it’s on top of other content */
  padding-top: 120px; /* Increased padding-top to push text further down */
}

.hero-text {
  flex-basis: 50%; /* Takes up 50% of the container width */
  z-index: 1; /* Ensure the text stays above background */
}

.hero-text h1 {
  font-size: 42px;
  font-weight: 700;
  color: #166c33; /* Ensure visibility */
  margin-bottom: 20px;
  z-index: 10; /* Ensure it’s above other content */
}

.hero-text p {
  font-size: 20px;
  font-weight: 300;
  color: #000000;
  margin-bottom: 40px;
  z-index: 10;
}

/* Responsive Design */
@media (max-width: 768px) {
  .hero-section {
    flex-direction: column; /* Stacks the text and image vertically */
    text-align: center;
    padding-top: 400px; /* Increased padding-top for smaller screens */
  }

  .hero-text, .hero-image {
    flex-basis: 100%; /* Text and image take full width on small screens */
  }

  .hero-text h1 {
    font-size: 28px; /* Reduce font size on small screens */
  }

  .hero-text p {
    font-size: 16px; /* Reduce paragraph font size */
  }

  .hero-image img {
    margin-top: 30px;
  }
}

.cta-button {
background-color: #46a35f;
color: white;
padding: 15px 30px;
font-size: 18px;
border-radius: 5px;
text-decoration: none;
font-weight: bold;
transition: background-color 0.3s ease;
}

.cta-button:hover {
background-color: #41ab5d;
}

/* Hero Image Styling */
.hero-image {
flex-basis: 45%; /* Image container takes 45% of the width */
}

.hero-image img {
max-width: 100%; 
height: auto; /* Maintain aspect ratio */
border-radius: 10px; 
}

/* Responsive Design */
@media (max-width: 768px) {
.hero-section {
    flex-direction: column; /* Stacks the text and image vertically */
    text-align: center;
}

.hero-text, .hero-image {
    flex-basis: 100%; /* Text and image take full width on small screens */
}

.hero-image img {
    margin-top: 10px;
}
}

/* Benefits Section */
.benefits-section {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 50px 20px;
  max-width: 1400px;
  margin: 0 auto;
  background: linear-gradient(135deg, #c7e9c0 0%, #daf1d5 100%); 
  border-radius: 10px; /* Slightly round the corners */
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1); /* Soft shadow for depth */
}

.benefit {
  text-align: center;
  flex-basis: 30%;
  margin: 0 15px;
}

.benefit img {
  width: 25%;
  height: auto;
  margin-bottom: 20px;
}

.benefit h3 {
  font-size: 30px;
  font-weight: 700;
  color: #392b20; 
  margin-bottom: 15px;
}

.benefit p {
  font-size: 16px;
  color: #000000;
  line-height: 1.6;
}

/* Responsive Design */
@media (max-width: 768px) {
  .benefits-section {
      flex-direction: column;
      text-align: center;
      margin-block-start: 40%;
  }

  .benefit {
      margin-bottom: 40px;
  }

  .benefit:last-child {
      margin-bottom: 0;
  }
}

/* Pricing Section */
.pricing-section {
display: flex;
justify-content: space-between;
gap: 20px;
max-width: 1200px;
margin: 50px auto;
padding: 20px;
}

.pricing-card {
background-color: #ffffff;
border: 1px solid #ddd;
border-radius: 10px;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
text-align: center;
width: 19%; /* Adjust this to make cards the desired width */
padding: 30px;
transition: transform 0.3s ease;
}

.pricing-card:hover {
transform: translateY(-10px); /* Adds a subtle hover effect */
}

.pricing-title {
font-size: 24px;
font-weight: 700;
color: #238b45; /* Green for the plan title */
margin-bottom: 10px;
}

.price {
font-size: 36px;
font-weight: bold;
color: #46a35f; /* Green for the price */
margin-bottom: 20px;
}

.features {
text-align: left;
list-style: none;
padding-left: 0;
margin-bottom: 20px;
}

.features li {
font-size: 16px;
color: #000000;
margin-bottom: 10px;
}



/* Responsive Design */
@media (max-width: 768px) {
.pricing-section {
    flex-direction: column;
    gap: 20px;
}

.pricing-card {
    width: 100%; /* Stack the cards on mobile */
}
}
/* General container for each section */
.content-image img {
max-width: 100%;
height: auto;
border-radius: 10px;
}
/* for left side text */
.content-text {
  flex-basis: 55%;
  padding-bottom: 40px;
  position: relative; /* Ensure it stays in front of the background squares */
}
.content-text h2 {
  font-size: 32px;
  color: #392b20;
  margin-bottom: 20px;
  }
  
  .content-text p {
  font-size: 18px;
  line-height: 1.6;
  color: #000000;
  padding-bottom: 5%;
  padding-right: 2%;
  }

  /* for right side text */
.content-text2 {
  flex-basis: 55%;
  padding: 2px; 
  }

  .content-text2 h2 {
    font-size: 30px;
    color: #392b20;
    margin-bottom: 20px;
    padding-left: 6%;
    }
    
    .content-text2 p {
      font-size: 18px;
      line-height: 1.6;
      color: #000000;
      padding-bottom: 10%;
      padding-left: 6%;
      }

  /* for left side 2 text */
  .content-text3 {
    flex-basis: 55%;
    padding-bottom: 50px;
    position: relative; /* Ensure it stays in front of the background squares */
  }
  .content-text3 h2 {
    font-size: 30px;
    color: #392b20;
    margin-bottom: 20px;
    }
    
    .content-text3 p {
    font-size: 18px;
    line-height: 1.6;
    color: #000000;
    padding-bottom: 10%;
    padding-right: 2%;
    }
  
/* Position the left and right squares behind other content */
.squareleft, .squareright {
  position: absolute;
  top: 11%; /* Align both squares a bit below the top of the content section */
  z-index: -1; /* Ensure background squares are behind content */
}

.squareleft {
  left: 0;
  width: 0%; /* Adjust width as needed */
  height: 0%;
  background-color: #faf3ec;  /* Background color for left square */
}

.squareright {
  right: 0;
  width: 80%; /* Adjust width as needed */
  height: 60%;
  background-color: #c7e9c0;  /* Background color for right square */
}

.squareleft3, .squareright3 {
  position: absolute;
  top: 7%; /* Align both squares a bit below the top of the content section */
  z-index: -1; /* Ensure background squares are behind content */
}

.squareleft3 {
  left: 0;
  width: 0%; /* Adjust width as needed */
  height: 0%;
  background-color: #faf3ec;  /* Background color for left square */
}

.squareright3 {
  right: 0;
  width: 80%; /* Adjust width as needed */
  height: 60%;
  background-color: #c7e9c0;  /* Background color for right square */
}
/*for other side */
.squareleft2, .squareright2 {
  position: absolute;
  top: 15%; /* Align both squares a bit below the top of the content section */
  z-index: -1; /* Ensure background squares are behind content */
}
.squareleft2 {
  left: 0;
  width: 80%; 
  height: 60%;
  background-color: #c7e9c0;  /* Background color for left square */
}

.squareright2 {
  right: 0;
  width: 0%; 
  height: 0%;
  background-color: #faf3ec;  /* Background color for right square */
}

/* Position the left and right squares behind other content */
.squareleft, .squareright, .squareleft2, .squareright2, .squareleft3, .squareright3 {
  position: absolute;
  z-index: -1; /* Ensure background squares are behind content */
}

/* Large screen (default) */
.squareleft {
  left: 0;
  top: 11%;
  width: 0%;
  height: 0%;
  background-color: #faf3ec;
}

.squareright {
  right: 0;
  top: 11%;
  width: 80%;
  height: 60%;
  background-color: #daf1d5;
}

.squareleft3 {
  left: 0;
  top: 7%;
  width: 0%;
  height: 0%;
  background-color: #faf3ec;
}

.squareright3 {
  right: 0;
  top: 7%;
  width: 80%;
  height: 60%;
  background-color: #daf1d5;
}

.squareleft2 {
  left: 0;
  top: 15%;
  width: 80%;
  height: 60%;
  background-color: #daf1d5;
}

.squareright2 {
  right: 0;
  top: 15%;
  width: 0%;
  height: 0%;
  background-color: #faf3ec;
}
@media (max-width: 768px) {
  .squareleft, .squareright, .squareleft2, .squareright2, .squareleft3, .squareright3 {
    display: none;
  }
}

/* Adjust the content section container to allow space for the background divs */
.content-section {
  position: relative; /* Make sure the content section is the reference for absolute positioning */
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 20px; /* Increase padding to move the content down */
  margin-bottom: 0px;
  min-height: 100px; /* Ensure there's enough height for the squares to show up */
}


.content-image, .content-image2 {
  flex-basis: 35%; /* Ensure both containers are the same width */
  padding-bottom: 50px; /* Consistent padding */
}

.content-image img, .content-image2 img {
  max-width: 100%; /* Ensures images scale properly */
  height: auto; /* Maintain aspect ratio */
  border-radius: 10px; /* Same rounded corners */
}



/* Reverse layout for alternating sections */
.reverse {
flex-direction: row-reverse; /* switch image and text positions */
}

/* Responsive adjustments */
@media (max-width: 768px) {
.content-section {
    flex-direction: column;
    text-align: center;
    padding: 40px 20px; /* Adjust padding for smaller screens */
}

.reverse {
    flex-direction: column; /* Undo the row-reverse on mobile */
}

.content-image, .content-text {
    flex-basis: 100%;
}

.content-image img {
    margin-bottom: 20px;
}
}

/* pricing card 2*/
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}
---
body {
  background:#faf3ec;
  padding: 20px;
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

.pricing-container {
  display: flex;
  gap: 32px; /* Increased gap for better spacing */
  justify-content: center;
  flex-wrap: wrap;
  width: 100%;
  max-width: 1400px; /* Increased max width */
  margin: 0 auto;
}

.pricing-card {
  background: white;
  border-radius: 12px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  width: 100%;
  max-width: 600px; /* Increased max width */
  overflow: hidden;
}

.promo-header {
  background: #f3e8ff;
  color: #21a852;
  padding: 8px 16px;
  text-align: center;
  font-size: 0.9rem;
}

.card-content {
  padding: 24px;
}

.product-name {
  color: #33771c;
  font-size: 1rem;
  margin-bottom: 4px;
}

.plan-name {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 8px;
}

.plan-description {
  color: #666;
  margin-bottom: 16px;
}

.explore-link {
  color: #33771c;
  text-decoration: none;
  font-weight: 600;
  display: inline-block;
  margin-bottom: 16px;
  border-bottom: 1px solid #ddd;
  padding-bottom: 16px;
  width: 100%;
}

.explore-link:hover {
  text-decoration: underline;
}

.price-container {
  margin-bottom: 24px;
}


.price {
  font-size: 2.8rem;
  font-weight: bold;
  display: flex;
  align-items: baseline;
  justify-content: center; /* Center the price horizontally */
  flex-wrap: wrap; /* Wrap if needed for small screens */
  gap: 4px;
  text-align: center; /* Ensure proper text alignment */
}
.price-currency,
.price-asterisk {
  font-size: 1.2rem;
}

.price-period {
  color: #666;
  margin-bottom: 8px;
}

.savings {
  font-weight: 600;
  margin-bottom: 4px;
}

.regular-price {
  color: #666;
}

.features-list {
  list-style: none;
  margin-bottom: 24px;
}

.feature-item {
  display: flex;
  gap: 12px;
  margin-bottom: 12px;
  color: #333;
}

.checkmark {
  color: #1ab23d;
  font-weight: bold;
}

.getintouch-button {
  width: 100%;
  padding: 12px;
  border: none;
  border-radius: 9999px;
  background: linear-gradient(to right, #1ab23d, #1ab23d);
  color: white;
  font-weight: 600;
  cursor: pointer;
  transition: opacity 0.2s;
}

.try-free-button:hover {
  opacity: 0.9;
}

@media (max-width: 768px) {
  .pricing-container {
      flex-direction: column;
      align-items: center;
  }

  .pricing-card {
      max-width: 100%;
  }
}
/* Footer */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
}

.container {
  display: flex;
  height: 100vh;
}

.left-section {
  flex: 1;
  background-color: #4267B2;
  display: flex;
  justify-content: center;
  align-items: center;
}

.left-section img {
  max-width: 100%;
  height: auto;
}

.right-section {
  flex: 1;
  background-color: #F2F4F8;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 2rem;
}

.right-section h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.right-section p {
  font-size: 1.1rem;
  margin-bottom: 2rem;
}

.right-section button {
  background-color: #4267B2;
  color: white;
  border: none;
  padding: 1rem 2rem;
  font-size: 1.1rem;
  border-radius: 5px;
  cursor: pointer;
}

.site-footer {
  background-color: #c7e9c0;
  color: white;
  padding: 40px 20px;
  font-family: Arial, sans-serif;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
}

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

.footer-logo {
  max-width: 150px;
  margin-bottom: 10px;
}

.footer-right {
  max-width: 400px;
  text-align: right;
}

.social-icons a {
  color: white;
  margin-right: 15px;
  text-decoration: none;
  transition: color 0.3s ease;
}

.social-icons a:hover {
  color: #26d35a;
}

.contact-info {
  margin-top: 20px;
}

.contact-info p {
  margin: 5px 0;
}

@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer-right {
    text-align: center;
    margin-top: 20px;
  }

  .social-icons a {
    margin: 0 10px;
  }
}

/*features page*/
.features-section {
  padding: 60px 20px;
  max-width: 1400px;
  margin: 0 auto;
}

.features-header {
  text-align: center; /* Centered the header text */
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 40px;
  color: #000000;
}

.features-row {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center; /* Centered the feature boxes */
}

.feature-box {
  background-color: white;
  padding: 40px; 
  border-radius: 12px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  text-align: center;
  flex: 1 1 calc(33.333% - 30px); /* Maintain a 3-column layout */
  max-width: calc(33.333% - 30px); /* Consistent max width */
  min-height: 400px; 
}

.feature-box img {
  width: 60px;
  height: 60px;
  margin-bottom: 20px;
}

.feature-box h3 {
  font-size: 1.5rem; /* Increased the font size of the titles */
  margin-bottom: 10px;
  color: #000000;
}

.feature-box p {
  font-size: 1.1rem; /* Increased the font size of the descriptions */
  color: #000000;
  margin-bottom: auto; /* Allow the paragraph to grow and adjust spacing */
}

.row-highlight {
  background-color: #D4EED5;
  padding: 60px 20px;
  margin: 0 auto;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .feature-box {
    flex: 1 1 calc(45% - 30px); /* Switch to a 2-column layout for tablets */
    max-width: calc(45% - 30px);
  }
}

@media (max-width: 480px) {
  .feature-box {
    flex: 1 1 100%; /* Switch to a 1-column layout for mobile */
    max-width: 100%;
  }

  .features-header {
    font-size: 2rem; /* Smaller header font size for mobile */
  }
}

/* Styling for contact page*/

.contact-section {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 2%;
}

.contact-header {
  width: 100%;
  text-align: center;
  font-size: 2.5rem;
  font-weight: bold;
  color: #238b45; /* Green color to match your theme */
  margin-bottom: 40px;
}

.contact-info1 {
  flex: 1 1 45%;
  background-color: white;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.contact-info1 h3 {
  font-size: 1.8rem;
  margin-bottom: 20px;
  color: #1e293b;
}

.contact-info1 p {
  font-size: 1rem;
  line-height: 1.8;
  color: #555;
  margin-bottom: 10px;
}

.contact-info1 p span {
  font-weight: bold;
  color: #238b45;
}

.map-placeholder {
  flex: 1 1 45%;
  background-color: #e8f5e9; /* Light green for visual placeholder */
  border-radius: 12px;
  height: 400px; /* Placeholder height */
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  text-align: center;
  font-size: 1.2rem;
  color: #238b45;
}

@media (max-width: 768px) {
  .contact-section {
    flex-direction: column;
  }

  .contact-info, .map-placeholder {
    flex: 1 1 100%;
  }
}