/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
  }
  



  /* Header Styling */

  
  
  /* Header */
  .header {
    background-color: white;
    color: green;
    display: flex;
    justify-content: space-between;
    padding: 1em 2em;
    align-items: center;
  }
  
  .header-left .logo {
    height: 40px;
    margin-right: 10px;
  }
  
  .company-name {
    font-weight: bold;
    font-size: 20px;
  }
  .logo {
    display: flex;
    align-items: center;
}

.logo-container {
    position: relative;
    width: 50px; /* Adjust as needed */
    height: auto; /* Maintain aspect ratio */
}

#logo {
	
    width: 100%; /* Adjusts to container */
    height: auto; /* Maintain aspect ratio */
    filter: brightness(0) saturate(100%) invert(36%) sepia(85%) saturate(1942%) hue-rotate(65deg) brightness(93%) contrast(90%);
}

#logo-text {
    font-size: 24px;
    color: #097c2a; /* Dark text color for contrast */
    margin-left: 10px; /* Space between logo and text */
	
}



  /* Right Section - Search and Menu */
  .header-right {
    display: flex;
    align-items: center;
  }
  
  .search-container {
    position: relative;
    margin-right: 1em;
  }
  
  .search-bar {
    padding: 0.5em 2em 0.5em 1em;
    border-radius: 150px;
    border: 1px solid #ddd;
    font-size: 1em;
    outline: none;
    transition: border-color 0.3s;
  }
  
  .search-bar:focus {
    border-color: green;
  }
  
  .search-icon {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1em;
    color: gray;
  }
  
  
  .menu a {
    color: green;
    text-transform: uppercase;
    /* font-weight: bold; */
    margin: 0 10px;
    text-decoration: none; /* Removes underline */
  }
  
  .menu a:hover {
    color: #005500; /* Darker green on hover */
  }
  
  .buy-btn {
    background-color: green;
    color: white;
    padding: 0.5em 1em;
    border: none;
    border-radius: 20px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s;
  }
  
  .buy-btn:hover {
    background-color: #005500; /* Darker green on hover */
  }
  
  
  /* Section Styling */
  /* Home Section Styling */
.home-section {
    background-color: #f7f5eb; /* Light cream background */
    display: flex;
    padding: 2em;
    align-items: center;
    gap: 2em;
  }
  
  .hero-text, .hero-image {
    flex: 1; /* Each container takes up 50% of width */
  }
  
  .hero-text {
    color: #708090;
    font-size: 2em;
  }
  
  .hero-text h1 {
    font-size: 2em;
    margin-bottom: 1em;
  }
  
  .email-input {
    padding: 0.5em 1em;
    font-size: 1em;
    margin-top: 1em;
    margin-right: 0.5em;
    border: 1px solid #ddd;
    border-radius: 5px;
  }
  
  .buy-btn {
    background-color: #4CAF50; /* Updated green color */
    color: white;
    padding: 0.5em 1em;
    border: none;
    border-radius: 5px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s;
  }
  
  .buy-btn:hover {
    background-color: #388E3C; /* Darker green for hover */
  }
  
  .hero-image img {
    width: 100%; /* Image takes full width of container */
    height: auto;
    display: block; /* Prevents extra spacing */
  }
  

/* Product Section Styling */
.product-section {
    background-color: #f7f5eb; /* Cream background */
    padding: 2em;
    text-align: center;
  }
  
  .product-title {
    color: #708090;
    font-size: 2em;
    margin-bottom: 1.5em;
  }
  
  /* Container for Product Items */
  .product-container {
    display: flex;
    flex-direction: column;
    gap: 1.5em;
  }
  
  /* Styling for Each Product Item */
  .product-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #f7f5eb;
    padding: 1em;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    height: auto;
  }
  
  /* For alternating layout - reverse the order of text and image */
  .product-item.reverse {
    flex-direction: row-reverse; /* Applies reverse layout for second item */
  }
  
  /* Image and Text Styling */
  .product-image {
    flex: 1;
    max-width: 50%; /* Ensures image takes up 50% of the width */
    padding: 0.5em;
  }
  
  .product-image img {
    width: 100%; /* Ensures image fills the container */
    height: auto;
    border-radius: 8px;
  }
  .product-image-body img {
   
    max-width: 100%; /* Ensures image takes up 50% of the width */
    
  }
  
  .product-text {
    flex: 1;
    max-width: 50%; /* Ensures text takes up 50% of the width */
    padding: 1em;
    font-size: 2em;
    text-align: left;
    color: rgba(212, 175, 55, 1);
    ;
  }
  
  .product-text h3 {
    font-size: 1.5em;
    margin-bottom: 0.5em;
    /* margin-left: 0.5em; */
    color: rgba(212, 175, 55, 1); /* Green color for the title */
  }
  
  .product-text p {
    font-size: 1em;
    line-height: 1.5;
  }


  /* How It Works Section Styling */
.how-it-works-section {
    background-color: #f7f5eb; /* Cream background */
    padding: 2em;
    /* margin-top: 2em; */
    border-radius: 8px;
  }
  
  /* Title Div Styling */
  .title-div {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5em;
  }
  
  .section-title {
    font-size: 2em;
    color: #708090;;
  }
  
  .learn-more-btn {
    background-color: #4CAF50; /* Green color */
    color: white;
    padding: 0.5em 1em;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
    transition: background-color 0.3s;
  }
  
  .learn-more-btn:hover {
    background-color: #388E3C; /* Darker green for hover */
  }
  
  /* Steps Div Styling */
  .steps-div {
    display: flex;
    gap: 2em;
    justify-content: center;
    align-items: center;
    margin-bottom: 2em;
    background-color: #F7F9F3;
    ;
  }
  
  .step {
    /* text-align: center; */
    display: flex;
    gap: 0.5em;
    
    
  }
  
  .step-btn {
    background-color: #D1B6A6;
    color: #000000;
    font-size: 1.2em;
    font-weight: bold;
    padding: 0.5em 1em;
    border: none;
    border-radius: 10%;
    cursor: pointer;
    margin-bottom: 0.5em;
    transition: background-color 0.3s;
  }
  
  .step-btn:hover {
    background-color: #388E3C;
  }
  
  .step-text {
    color: #4CAF50;
    font-size: 1em;
    
    
  }
 
  
  /* Image and Text Div Styling */
  .image-text-div {
    display: flex;
    align-items: center;
    gap: 2em;
  }
  
  .image-section, .text-section {
    flex: 1; /* Each section takes up 50% */
  }
  
  .image-section img {
    width: 100%;
    height: auto;
    border-radius: 8px;
  }
  
  .text-section p {
    color: #708090;;
    font-size: 2em;
    line-height: 1.6;
  }
  
  
/* Community Section Styling */
.community-section {
    background-color: #f7f5eb; /* Cream background */
    padding: 2em;
    /* margin-top: 2em; */
    border-radius: 8px;
  }
  
  /* Div1: Title and Button Styling */
  .community-title-div {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5em;
  }
  
  .community-title {
    font-size: 2em;
    color:  #D4AF37;

    margin-left: 1em;

  }
  
  .learn-more-btn {
    background-color: #4CAF50; /* Green color */
    color: white;
    padding: 0.5em 1em;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
    transition: background-color 0.3s;
  }
  
  .learn-more-btn:hover {
    background-color: #388E3C; /* Darker green for hover */
  }
  
  /* Div2: Centered Description Text */
  .community-description {
    text-align: center;
    margin: 2em 5em 2em 4em;
    
    color: #708090;;
    font-size: 2em;
    line-height: 2em;
  }
  
  /* Div3: Help Section with Image */
  .community-help-div {
    display: flex;
    gap: 2em;
    /* align-items: center; */
  }
  
  /* Left Side: Help Info Styling */
  .help-info {
    flex: 1; /* Takes up 50% */
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background-color: #f7f5eb;
    padding: 2em;
    margin: 2em;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  }
  
  .help-title {
    color: #4CAF50; /* Green color for title */
    font-size: 2em;
    /* margin-bottom: 4em; */
  }
  
  .help-description {
    font-size: 1.5em;
    color: #708090;;
    text-align: center;
    margin-right: 5em;
  }
  
  .chat-now-btn {
    background-color: #4CAF50;
    color: white;
    padding: 0.5em 1em;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
    align-self: flex-start;
    transition: background-color 0.3s;
  }
  
  .chat-now-btn:hover {
    background-color: #388E3C;
  }
  
  /* Right Side: Image Styling */
  .help-image {
    flex: 1; /* Takes up 50% */
  }
  
  .help-image img {
    width: 100%; /* Full width in container */
    height: auto;
    border-radius: 8px;
  }
  
/* Our Partners Section Styling */
.partners-section {
    background-color: #f7f5eb; /* Cream background */
    padding: 4em;
    
    border-radius: 8px;
    overflow: hidden; /* Hide overflow to keep slider within bounds */
  }
  
  /* Title Styling */
  .partners-title-div {
    /* text-align: center; */
    margin-bottom: 1.5em;
  }
  
  .partners-title {
    font-size: 2em;
    color: #D4AF37;
    margin-left: 1em;
  }
  
  /* Carousel Styling */
  .partners-carousel {
    display: flex;
    gap: 2em;
    align-items: center;
    overflow: hidden;
    animation: slide 20s linear infinite; /* Infinite scrolling animation */
    margin: 10%;
  }
  
  .partner {
    text-align: center;
    min-width: 200px; /* Minimum width for each partner box */
    flex-shrink: 0; /* Prevent flex items from shrinking */
  }
  
  .partner img {
    width: 200px; /* Adjust logo size as needed */
    height: auto;
    margin-bottom: 0.5em;
  }
  
  .partner p {
    font-size: 1.5em;
    color: #000000;
    font-weight: 1em;
  }
  
  /* Sliding Animation */
  @keyframes slide {
    /* 0% {
      transform: translateX(0);
    }
    100% {
      transform: translateX(-100%);
    } */
  }
  

  /* About Section Styling */
.about-section {
    background-color: #f7f5eb;; /* Cream background */
    padding: 2em;
    /* margin-top: 2em; */
    border-radius: 8px;
  }
  
  /* Div1: Title Styling */
  .about-title-div {
    text-align: center;
    margin-bottom: 1.5em;
  }
  
  .about-title {
    font-size: 2em;
    color:  #228B22;
    ;
  }
  
  /* Div2: Testimonials Styling */
  .testimonials {
    display: flex;
    gap: 4em;
    justify-content: space-between;
    margin-bottom: 2em;
  }
  
  .testimonial {
    
    padding: 1em;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    flex: 1; /* Ensures each testimonial takes equal width */
    text-align: center;
  }
  
  .testimonial-text {
    font-size: 1.5em;
    color:  #708090;
    margin-bottom: 1em;
  }
  
  .testimonial-name {
    font-size: 1em;
    color: #FFC107; /* Yellow color for name */
    font-weight: bold;
  }
  
  .testimonial-role {
    font-size: 0.9em;
    color: gray;
  }
  
  /* Div3: Comments Section Styling */
  .comments-section {
    margin: 5%;
  }
  
  .comments-title {
    font-size: 1.5em;
    color:  #9A8A8A;
    ;
    margin-bottom: 1em;
  }
  
  .comment-box {
    width: 50%;
    height: 100px;
    padding: 1em;
    border: 1px solid #ddd;
    border-radius: 5px;
    margin-bottom: 1em;
    resize: vertical; /* Allows resizing vertically */
    font-size: 1em;
    color: darkgray;
  }
  
  .post-comment-btn {
    background-color: #4CAF50; /* Green color */
    color: white;
    padding: 0.5em 1em;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
    transition: background-color 0.3s;
  }
  
  .post-comment-btn:hover {
    background-color: #388E3C; /* Darker green for hover */
  }
  
/* Footer Section Styling */
.footer-section {
    background-color: #f7f5eb; /* Cream background */
    padding: 2em 1em;
    /* margin-top: 2em; */
  }
  
  /* Boundary Line */
  .footer-boundary {
    border-top: 1px solid  #708090;
    margin-bottom: 1.5em;
  }
  
  /* Footer Content Layout */
  .footer-content {
    display: flex;
    gap: 10em;
    justify-content: space-between;
    margin: 10% 0% 10% 10%;
  }
  
  /* Footer Column Styling */
  .footer-column {
    flex: 1; /* Each column takes up equal space */
  }
  
  .footer-title {
    font-size: 1.5em;
    color: #4CAF50; /* Green color for titles */
    margin-bottom: 0.5em;
  }
  
  .footer-list {
    list-style-type: none;
    padding: 0;
    margin: 0;
  }
  
  .footer-list li {
    margin-bottom: 0.5em;
  }
  
  .footer-list a {
    color: #708090;
    text-decoration: none;
    transition: color 0.3s;
  }
  
  .footer-list a:hover {
    color: #4CAF50; /* Green color on hover */
  }
  
  /* Specific Styling for Help Section */
  .footer-help {
    flex: 1.5; /* Make Help section larger to accommodate more items */
  }
  
  
  
  
 
  
  