* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
html, body {
    width: 100%;
    overflow-x: hidden;
    font-family: 'Poppins', sans-serif;
    color: #14532d;
    scroll-behavior: smooth;
}
.navbar {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 2;
    background: rgba(0, 0, 0, 0.3);
}
.nav-links a {
    position: relative;
    color: white;
    text-decoration: none;
    margin-left: 20px;
    font-weight: 500;
    padding-bottom: 4px;
    transition: color 0.3s ease;
}
.nav-links a::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%) scaleX(0);
    transform-origin: center;
    width: 100%;
    height: 2px;
    background-color: white;
    transition: transform 0.3s ease;
}
.nav-links a:hover::after {
    transform: translateX(-50%) scaleX(1);
}
.logo {
    font-size: 1.5em;
    font-weight: 600;
    color: white;
}
.hero {
    position: relative;
    width: 100%;
    height: 100vh;
    background-image: url('images/trees.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 20px;
}
.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    border-bottom-left-radius: 30px;
    border-bottom-right-radius: 30px;
}
.hero-text {
    position: relative;
    z-index: 1;
    max-width: 90%;
    color: white;
}
.hero-text h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
    text-shadow: 0 2px 8px rgba(0,0,0,0.7);
}
.hero-text p {
    font-size: 1.2rem;
    margin-bottom: 30px;
}
.hero-button {
    padding: 12px 24px;
    background-color: #14532d;
    color: #fff;
    text-decoration: none;
    border-radius: 999px;
    font-weight: bold;
    transition: background-color 0.3s ease, color 0.3s ease;
}
.hero-button:hover {
    background-color: #fff;
    color: #14532d;
    border: 1px solid #14532d;
}
@media (max-width: 768px) {
    .hero-text h1 {
        font-size: 1.8rem;
    }
    .hero-text p {
        font-size: 1rem;
    }
    .navbar {
        flex-direction: column;
        align-items: flex-start;
    }
    .nav-links {
        margin-top: 10px;
    }
    .nav-links a {
        margin-left: 0;
        margin-right: 15px;
    }
}
/* General Section Styling */
section {
    padding: 80px 5vw;
    background-color: #f4f4f4;
    color: #333;
}
h2 {
    font-size: 2em;
    text-align: center;
    margin-bottom: 40px;
}
/* Waste Classification Section */
.waste-hero {
    background-image: url('images/waste.jpg');
    background-size: cover;
    background-position: left center;
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding: 60px 5vw;
    position: relative;
    color: #1b3e2c;
}
.waste-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
}
.waste-hero-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
    background: none;
    box-shadow: none;
    border-radius: 0;
    padding: 0;
    text-align: left;
}
.waste-hero-content h1 {
    font-size: 2.5em;
    margin-bottom: 15px;
    color: #2e7d32;
}
.waste-hero-content p {
    font-size: 1.1em;
    line-height: 1.6;
    margin-bottom: 25px;
    color: #333;
}
/* About Section */
.about-section {
    text-align: center;
    font-size: 1.1em;
}
/* Footer */
.footer {
    background-color: #333;
    color: white;
    text-align: center;
    padding: 30px 0;
    font-size: 0.9em;
}
/* NEW: Why Recycle Section */
.why-recycle {
    background-color: #14532d; /* Dark green background */
    padding: 100px 5vw;
    color: #ffffff; /* Default text color to white */
}

.why-recycle .container {
    max-width: 1200px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

.section-header h2 {
    font-size: 2.5rem;
    color: #ffffff; /* White heading */
    margin-bottom: 20px;
}

.section-header p {
    font-size: 1.2rem;
    color: #a7d7a7; /* Light green text for better readability */
    line-height: 1.6;
}

.recycle-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-bottom: 80px;
}

.recycle-item {
    background-color: #1e5631; /* Slightly lighter dark green */
    border-radius: 15px;
    padding: 0;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
    /* border: 1px solid #2e7d32; Subtle border */
    overflow: hidden;
}

.recycle-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.image-container {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.recycle-item:hover .image-container img {
    transform: scale(1.05);
}

.recycle-item h3 {
    font-size: 1.5rem;
    color: #ffffff; /* White heading */
    margin: 20px 0 15px;
    padding: 0 20px;
}

.recycle-item p {
    color: #d4f1d4; /* Light green text for better readability */
    line-height: 1.6;
    padding: 0 20px 30px;
}

.stats-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
    margin-bottom: 60px;
    border:1px solid #4caf50
}

.stat-item {
    /* background-color: #2e7d32; Medium green background */
    color: #ffffff; /* White text */
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    transition: transform 0.3s ease;
    /* border: 1px solid #4caf50; Subtle border */
}

.stat-item:hover {
    transform: scale(1.03);
}

.stat-number {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 15px;
    color: #a7d7a7; /* Light green for numbers */
}

.stat-label {
    font-size: 1.1rem;
    line-height: 1.5;
    color: #d4f1d4; /* Light green text */
}

.impact-image {
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.impact-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.impact-image:hover img {
    transform: scale(1.02);
}

@media (max-width: 768px) {
    .why-recycle {
        padding: 60px 5vw;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .section-header p {
        font-size: 1rem;
    }
    
    .recycle-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .image-container {
        height: 180px;
    }
}

/* Map Section */
.map-section {
    background-color: #0d2818; /* Even darker green for contrast */
    padding: 100px 5vw;
    color: #ffffff;
}

.map-section .container {
    max-width: 1200px;
    margin: 0 auto;
}

.map-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px;
}

.map-header h2 {
    font-size: 2.5rem;
    color: #ffffff;
    margin-bottom: 15px;
}

.map-header p {
    font-size: 1.2rem;
    color: #a7d7a7;
    line-height: 1.6;
}

.map-container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 30px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.map-wrapper {
    height: 800px;
    border-radius: 15px 0 0 15px;
    overflow: hidden;
    background-color: #1e5631;
    position: relative;
}

.map-wrapper iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.map-info {
    background-color: #14532d;
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-radius: 0 15px 15px 0;
}

.info-card {
    background-color: #1e5631;
    border-radius: 10px;
    padding: 25px;
    border: 1px solid #2e7d32;
}

.info-card h3 {
    font-size: 1.5rem;
    color: #ffffff;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid #2e7d32;
}

.info-card ul {
    list-style: none;
    margin-bottom: 25px;
}

.info-card ul li {
    margin-bottom: 12px;
    padding-left: 25px;
    position: relative;
    color: #d4f1d4;
    line-height: 1.5;
}

.info-card ul li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: #8bc34a;
    font-weight: bold;
}

.info-card .hero-button {
    display: inline-block;
    /* background-color: #2e7d32; */
    color: white;
    padding: 12px 24px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    border: 1px solid #4caf50;
    margin-top: 10px;
}

.info-card .hero-button:hover {
    background-color: #4caf50;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(76, 175, 80, 0.3);
}

@media (max-width: 968px) {
    .map-container {
        grid-template-columns: 1fr;
    }
    
    .map-wrapper {
        height: 400px;
        border-radius: 15px 15px 0 0;
    }
    
    .map-info {
        border-radius: 0 0 15px 15px;
    }
}

@media (max-width: 576px) {
    .map-section {
        padding: 60px 5vw;
    }
    
    .map-header h2 {
        font-size: 2rem;
    }
    
    .map-header p {
        font-size: 1rem;
    }
    
    .map-wrapper {
        height: 300px;
    }
    
    .info-card {
        padding: 20px;
    }
    
    .info-card h3 {
        font-size: 1.3rem;
    }
    
    .info-card ul li {
        font-size: 0.9rem;
    }
}

/* Calculator Section */
.calculator-section {
    background-color: #f4f4f4;
    padding: 100px 5vw;
    color: #14532d;
}

.calculator-section .container {
    max-width: 1200px;
    margin: 0 auto;
}

.calculator-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.calculator-text h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #14532d;
}

.calculator-text p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 30px;
    color: #333;
}

.calculator-features {
    list-style: none;
    margin-bottom: 30px;
}

.calculator-features li {
    margin-bottom: 12px;
    padding-left: 30px;
    position: relative;
    color: #333;
    line-height: 1.5;
}

.calculator-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #2e7d32;
    font-weight: bold;
}

.calculator-image {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.calculator-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.calculator-image:hover img {
    transform: scale(1.03);
}

@media (max-width: 768px) {
    .calculator-section {
        padding: 60px 5vw;
    }
    
    .calculator-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .calculator-text h2 {
        font-size: 2rem;
    }
    
    .calculator-text p {
        font-size: 1rem;
    }
}

/* Blog Section Styles */

.blog-section{
    /* padding: 80px 0; */
    background-color:#0D2818; 
}

.blog-content{
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap:40px;
}

.blog-image{
    flex:1;
}

.blog-image img{
    width: 70%;
    height:auto;
    border-radius:8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    margin-left: 50px;
}

.blog-text{
    flex:1;
}

.blog-text h2{
    font-size: 2.5rem;
    margin-bottom: 20px;
    color:white;
}

.blog-text p{
    font-size: 1.1rem;
    line-height: 1.6;
    color:#d4f1d4;
    margin-bottom:25px;
}

.blog-features{
    list-style:none;
    padding:0;
    margin: 0 0 30px 0 ;
}

.blog-features li {
  margin-bottom: 12px;
  padding-left: 25px;
  position: relative;
  font-size: 1rem;
  color: #d4f1d4;
}

.blog-features li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #4caf50;
  font-weight: bold;
}

/* Responsive Design */
@media (max-width: 768px) {
  .blog-content {
    flex-direction: column;
  }

  .blog-text h2 {
    font-size: 2rem;
  }
}

/* About Us Section */
.about-section {
  background-color: #f9f9f9;
  padding: 100px 5vw;
}
.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}
.about-text h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: #14532d;
}
.about-text p {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 20px;
  color: #333;
}
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 30px;
}
.team-member {
  text-align: center;
}
.member-photo {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 15px;
  border: 3px solid #14532d;
}
.member-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.team-member h3 {
  font-size: 1.1rem;
  margin-bottom: 5px;
  color: #14532d;
}
.team-member p {
  font-size: 0.9rem;
  color: #666;
}
.about-image {
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}
.about-image img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.5s ease;
}
.about-image:hover img {
  transform: scale(1.03);
}
@media (max-width: 768px) {
  .about-content {
    grid-template-columns: 1fr;
  }
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 576px) {
  .team-grid {
    grid-template-columns: 1fr;
  }
}


/* Partner Page Styles */
.partner-hero {
  position: relative;
  width: 100%;
  height: 60vh;
  background-image: url('images/partnership.jpg');
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 20px;
}
.partner-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
}
.partner-hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  color: white;
}
.partner-hero-content h1 {
  font-size: 3rem;
  margin-bottom: 20px;
  text-shadow: 0 2px 8px rgba(0,0,0,0.7);
}
.partner-hero-content p {
  font-size: 1.3rem;
}
.partner-section {
  padding: 80px 5vw;
  background-color: #f9f9f9;
}
.partner-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  max-width: 1200px;
  margin: 0 auto;
}
.partner-form {
  background-color: white;
  padding: 40px;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}
.partner-form h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  color: #14532d;
}
.partner-form p {
  margin-bottom: 30px;
  color: #555;
}
.form-group {
  margin-bottom: 20px;
}
.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  color: #14532d;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
}
.form-group textarea {
  resize: vertical;
}
.partner-info h2 {
  font-size: 2rem;
  margin-bottom: 30px;
  color: #14532d;
}
.benefit-item {
  margin-bottom: 30px;
}
.benefit-item h3 {
  font-size: 1.3rem;
  margin-bottom: 10px;
  color: #14532d;
}
.benefit-item p {
  color: #555;
  line-height: 1.6;
}
.partner-types {
  margin-top: 40px;
  padding-top: 30px;
  border-top: 1px solid #eee;
}
.partner-types h3 {
  font-size: 1.3rem;
  margin-bottom: 15px;
  color: #14532d;
}
.partner-types ul {
  list-style: none;
  padding: 0;
}
.partner-types li {
  margin-bottom: 10px;
  padding-left: 25px;
  position: relative;
}
.partner-types li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #2e7d32;
  font-weight: bold;
}
@media (max-width: 768px) {
  .partner-hero {
    height: 50vh;
  }
  .partner-hero-content h1 {
    font-size: 2.2rem;
  }
  .partner-content {
    grid-template-columns: 1fr;
  }
}


/* updated map-info for suggested vendor */

/* Vendor Form Styles */
.map-info .form-group {
  margin-bottom: 15px;
}
.map-info input,
.map-info select {
  width: 100%;
  padding: 10px;
  border: 1px solid #2e7d32;
  border-radius: 5px;
  background-color: rgba(255, 255, 255, 0.9);
  color: #14532d;
}
.map-info h3 {
  margin-top: 25px;
  margin-bottom: 10px;
  font-size: 1.2rem;
  color: #ffffff;
}
.map-info p {
  margin-bottom: 15px;
  color: #d4f1d4;
}