/* Global Typography - Montserrat Font, Non-Bold, Small Sizes */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@200;300;400;500&display=swap');

:root{
  --gold:#d4a000;
  --bg:#f5f5f5;
  --paper:#ffffff;
  --muted:#666666;
  --green-light:#e8f5e9;
  --green:#4caf50;
  --green-dark:#2e7d32;
}

*{
  box-sizing:border-box;
  margin:0;
  padding:0;
  font-family: 'Montserrat' !important;
  font-weight: 400 !important;
}

html, body {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.4;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 400 !important;
}

strong, b {
  font-weight: 400 !important;
}

nav, nav a, .navbar, .nav-link, .menu-item, .main-nav a, .mobile-nav-link {
  font-size: 12px !important;
  font-weight: 400 !important;
  font-family: 'Montserrat' !important;
}

p {
  font-size: 13px;
  font-weight: 400 !important;
}

body.bg-light{
  background:var(--bg);
  color:#000;
  font-family:'Montserrat';
  padding-top:0;
  font-weight: 400;
}

/* Project Overview Section */
.project-overview-section {
  padding: 0;
  background: var(--paper);
  margin-top: 60px;
  text-align: center;
}

.project-overview-image {
  width: 100%;
  height: 400px;
  overflow: hidden;
  margin-bottom: 40px;
}

.project-overview-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.project-overview-content {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 40px 50px;
  position: relative;
  z-index: 1;
}

.project-main-title {
  font-size: 1.8rem;
  font-weight: 400;
  color: #1a1a1a;
  margin: 0 0 20px 0;
  font-family: 'Montserrat';
  line-height: 1.2;
}

.project-underline {
  width: 100px;
  height: 4px;
  background: var(--gold);
  margin: 0 auto 30px;
}

.project-intro {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.8;
  margin: 0;
  font-family: 'Montserrat';
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

/* What We're Doing Section */
.what-we-do-section {
  padding: 50px 40px;
  background: var(--bg);
}

.section-title {
  font-size: 1.2rem;
  font-weight: 400;
  color: #1a1a1a;
  margin: 0 0 25px 0;
  font-family: 'Montserrat';
  text-align: center;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--gold);
  display: inline-block;
  width: 100%;
}

.project-description {
  max-width: 1000px;
  margin: 0 auto;
}

.project-description > p {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.7;
  margin: 0;
  font-family: 'Montserrat';
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.project-content-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  max-width: 1000px;
  margin: 0 auto;
}

.project-image-wrapper {
  width: 100%;
  height: 300px;
  border-radius: 12px;
  overflow: hidden;
}

.project-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.project-text-wrapper {
  text-align: left;
}

.project-text-wrapper p {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.7;
  margin: 0;
  font-family: 'Montserrat';
  text-align: left;
}

.project-highlights {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 40px;
}

.highlight-item {
  background: var(--paper);
  padding: 30px;
  border-radius: 12px;
  border-left: 4px solid var(--green);
  transition: all 0.3s ease;
}

.highlight-item:hover {
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
  transform: translateY(-5px);
}

.highlight-icon {
  width: 60px;
  height: 60px;
  background: rgba(76, 175, 80, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--green);
}

.highlight-item h3 {
  font-size: 0.9rem;
  font-weight: 400;
  color: #1a1a1a;
  margin: 0 0 15px 0;
  font-family: 'Montserrat';
}

.highlight-item p {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.6;
  margin: 0;
  font-family: 'Montserrat';
}

/* Approach Section */
.approach-section {
  padding: 80px 40px;
  background: var(--paper);
}

.approach-content {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.approach-text h3 {
  font-size: 1.05rem;
  font-weight: 400;
  color: #1a1a1a;
  margin: 0 0 15px 0;
  font-family: 'Montserrat';
}

.approach-text p {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.8;
  margin: 0 0 30px 0;
  font-family: 'Montserrat';
}

.approach-visual {
  height: 400px;
  border-radius: 20px;
  overflow: hidden;
}

/* Components Section */
.components-section {
  padding: 80px 40px;
  background: var(--bg);
}

.components-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.component-card {
  background: var(--paper);
  padding: 30px;
  border-radius: 12px;
  border-left: 4px solid var(--gold);
  transition: all 0.3s ease;
  text-align: center;
}

.component-card:hover {
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
  transform: translateY(-5px);
}

.component-icon {
  width: 70px;
  height: 70px;
  background: rgba(212, 160, 0, 0.1);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: var(--gold);
}

.component-card h3 {
  font-size: 0.9rem;
  font-weight: 400;
  color: #1a1a1a;
  margin: 0 0 15px 0;
  font-family: 'Montserrat';
}

.component-card p {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.6;
  margin: 0;
  font-family: 'Montserrat';
}

/* Impact Section */
.impact-section {
  padding: 80px 40px;
  background: var(--paper);
}

.impact-content {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.impact-item {
  background: var(--bg);
  padding: 30px;
  border-radius: 12px;
}

.impact-item h3 {
  font-size: 1.15rem;
  font-weight: 400;
  color: #1a1a1a;
  margin: 0 0 20px 0;
  font-family: 'Montserrat';
  padding-bottom: 15px;
  border-bottom: 2px solid var(--green);
}

.impact-item ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.impact-item li {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.8;
  margin: 0 0 12px 0;
  padding-left: 25px;
  position: relative;
  font-family: 'Montserrat';
}

.impact-item li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--green);
  font-weight: 400;
  font-size: 0.95rem;
}

/* Technology Integration Section */
.tech-integration-section {
  padding: 80px 40px;
  background: var(--bg);
}

.tech-content {
  max-width: 1000px;
  margin: 0 auto;
}

.tech-content > p {
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.8;
  margin: 0 0 40px 0;
  font-family: 'Montserrat';
  text-align: center;
}

.tech-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 40px;
}

.tech-feature {
  background: var(--paper);
  padding: 25px;
  border-radius: 12px;
  border-top: 4px solid var(--gold);
}

.tech-feature h4 {
  font-size: 0.95rem;
  font-weight: 400;
  color: #1a1a1a;
  margin: 0 0 12px 0;
  font-family: 'Montserrat';
}

.tech-feature p {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.6;
  margin: 0;
  font-family: 'Montserrat';
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}

.waste-hero-content {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.waste-hero-text p {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.8;
  margin: 0 0 30px 0;
  font-family: 'Montserrat';
}

.waste-hero-illustration {
  position: relative;
  height: 400px;
}

.illustration-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(76, 175, 80, 0.1) 0%, rgba(46, 125, 50, 0.1) 100%);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.illustration-placeholder::before {
  content: '';
  position: absolute;
  width: 200px;
  height: 200px;
  background: url('https://images.unsplash.com/photo-1625246333195-78d9c38ad449?w=400&h=400&fit=crop') center/cover;
  border-radius: 50%;
  opacity: 0.3;
}

.waste-cta-button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--green);
  color: #fff;
  padding: 14px 30px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 400;
  font-family: 'Montserrat';
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.waste-cta-button:hover {
  background: var(--green-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(76, 175, 80, 0.3);
}

.waste-cta-button svg {
  width: 20px;
  height: 20px;
}

/* Technology Platform Section */
.tech-platform-section {
  padding: 80px 40px;
  background: var(--green-light);
}

.tech-platform-content {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.tech-platform-text h2 {
  font-size: 1.05rem;
  font-weight: 400;
  color: #1a1a1a;
  margin: 0 0 20px 0;
  font-family: 'Montserrat';
}

.tech-platform-text p {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.8;
  margin: 0 0 30px 0;
  font-family: 'Montserrat';
}

.tech-platform-visual {
  position: relative;
  height: 400px;
}

.phone-illustration {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(76, 175, 80, 0.1) 0%, rgba(46, 125, 50, 0.1) 100%);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.phone-mockup {
  width: 200px;
  height: 350px;
  background: #1a1a1a;
  border-radius: 25px;
  padding: 8px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.2);
  position: relative;
  z-index: 2;
}

.phone-screen {
  width: 100%;
  height: 100%;
  background: #f0f0f0;
  border-radius: 18px;
  overflow: hidden;
}

.organic-blob {
  position: absolute;
  width: 300px;
  height: 300px;
  background: var(--green);
  border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
  opacity: 0.2;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  animation: blob 8s ease-in-out infinite;
}

@keyframes blob {
  0%, 100% { border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%; }
  50% { border-radius: 30% 60% 70% 40% / 50% 60% 30% 60%; }
}

/* Service Offerings Section */
.service-offerings-section {
  padding: 80px 40px;
  background: var(--paper);
}

.service-offerings-content {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.service-offerings-text h2 {
  font-size: 1.05rem;
  font-weight: 400;
  color: #1a1a1a;
  margin: 0 0 20px 0;
  font-family: 'Montserrat';
}

.service-offerings-text p {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.8;
  margin: 0 0 40px 0;
  font-family: 'Montserrat';
}

.service-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.service-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 25px;
}

.service-icon {
  width: 50px;
  height: 50px;
  background: rgba(76, 175, 80, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--green);
}

.service-icon svg {
  width: 24px;
  height: 24px;
}

.service-text h3 {
  font-size: 0.95rem;
  font-weight: 400;
  color: #1a1a1a;
  margin: 0 0 5px 0;
  font-family: 'Montserrat';
}

.service-text p {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.6;
  margin: 0;
  font-family: 'Montserrat';
}

.service-illustration {
  position: relative;
  height: 400px;
}

.illustration-farmer {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(76, 175, 80, 0.1) 0%, rgba(46, 125, 50, 0.1) 100%);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Clients Section */
.clients-section {
  padding: 80px 40px;
  background: var(--green-light);
}

.clients-content {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.clients-content h2 {
  font-size: 1.05rem;
  font-weight: 400;
  color: #1a1a1a;
  margin: 0 0 50px 0;
  font-family: 'Montserrat';
}

.client-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}

.client-logo {
  height: 80px;
  padding: 15px 30px;
  background: var(--paper);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.client-logo:hover {
  transform: translateY(-5px);
}

.client-logo img {
  max-height: 100%;
  max-width: 150px;
  object-fit: contain;
}

.client-logo-text {
  font-size: 0.95rem;
  font-weight: 400;
  color: var(--green);
  font-family: 'Montserrat';
}

/* Testimonials Section */
.testimonials-section {
  padding: 80px 40px;
  background: var(--paper);
}

.testimonials-content {
  max-width: 1200px;
  margin: 0 auto;
}

.testimonials-content h2 {
  font-size: 1.05rem;
  font-weight: 400;
  color: #1a1a1a;
  text-align: center;
  margin: 0 0 50px 0;
  font-family: 'Montserrat';
}

.testimonials-slider {
  position: relative;
}

.testimonials-container {
  display: flex;
  gap: 30px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.testimonials-container::-webkit-scrollbar {
  display: none;
}

.testimonial-card {
  min-width: 350px;
  background: var(--paper);
  border: 2px solid var(--green-light);
  border-radius: 20px;
  padding: 30px;
  scroll-snap-align: start;
  box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.testimonial-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
}

.testimonial-avatar {
  width: 60px;
  height: 60px;
  background: var(--green-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green);
  font-size: 1.15rem;
  font-weight: 400;
  font-family: 'Montserrat';
}

.testimonial-info h3 {
  font-size: 0.95rem;
  font-weight: 400;
  color: #1a1a1a;
  margin: 0 0 5px 0;
  font-family: 'Montserrat';
}

.testimonial-info p {
  font-size: 0.9rem;
  color: var(--muted);
  margin: 0;
  font-family: 'Montserrat';
}

.testimonial-quote {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.8;
  font-style: italic;
  font-family: 'Montserrat';
}

.testimonial-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  background: var(--paper);
  border: 2px solid var(--green-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 10;
}

.testimonial-nav:hover {
  background: var(--green);
  border-color: var(--green);
  color: #fff;
}

.testimonial-nav.prev {
  left: -25px;
}

.testimonial-nav.next {
  right: -25px;
}

/* Bottom CTA Section */
.bottom-cta-section {
  padding: 80px 40px;
  background: var(--green-light);
}

.bottom-cta-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.bottom-cta-content h2 {
  font-size: 1.05rem;
  font-weight: 400;
  color: #1a1a1a;
  margin: 0 0 40px 0;
  font-family: 'Montserrat';
}

.cta-form {
  display: flex;
  gap: 15px;
  max-width: 500px;
  margin: 0 auto;
}

.cta-input {
  flex: 1;
  padding: 14px 20px;
  border: 2px solid #ddd;
  border-radius: 30px;
  font-size: 0.9rem;
  font-family: 'Montserrat';
  outline: none;
  transition: border-color 0.3s ease;
}

.cta-input:focus {
  border-color: var(--green);
}

.cta-submit {
  padding: 14px 30px;
  background: var(--green);
  color: #fff;
  border: none;
  border-radius: 30px;
  font-size: 0.9rem;
  font-weight: 400;
  font-family: 'Montserrat';
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.cta-submit:hover {
  background: var(--green-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(76, 175, 80, 0.3);
}

.cta-submit svg {
  width: 20px;
  height: 20px;
}

/* Extrusion Process Section */
.extrusion-section {
  padding: 80px 40px;
  background: var(--paper);
}

.extrusion-content {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.extrusion-text > p {
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.8;
  margin: 0 0 40px 0;
  font-family: 'Montserrat';
}

.process-steps {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.process-step {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.step-number {
  width: 50px;
  height: 50px;
  background: var(--green);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  font-weight: 400;
  font-family: 'Montserrat';
  flex-shrink: 0;
}

.step-content h3 {
  font-size: 0.9rem;
  font-weight: 400;
  color: #1a1a1a;
  margin: 0 0 10px 0;
  font-family: 'Montserrat';
}

.step-content p {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.6;
  margin: 0;
  font-family: 'Montserrat';
}

.extrusion-visual {
  height: 400px;
  border-radius: 20px;
  overflow: hidden;
}

/* Testing Section */
.testing-section {
  padding: 80px 40px;
  background: var(--bg);
}

.testing-content {
  max-width: 1200px;
  margin: 0 auto;
}

.testing-content > p {
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.8;
  margin: 0 0 50px 0;
  font-family: 'Montserrat';
  text-align: center;
}

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

.testing-card {
  background: var(--paper);
  padding: 30px;
  border-radius: 12px;
  border-left: 4px solid var(--gold);
  transition: all 0.3s ease;
}

.testing-card:hover {
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
  transform: translateY(-5px);
}

.testing-icon {
  width: 60px;
  height: 60px;
  background: rgba(212, 160, 0, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--gold);
}

.testing-card h3 {
  font-size: 0.9rem;
  font-weight: 400;
  color: #1a1a1a;
  margin: 0 0 15px 0;
  font-family: 'Montserrat';
}

.testing-card p {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.6;
  margin: 0;
  font-family: 'Montserrat';
}

/* Prototype Gallery Section */
.prototype-gallery-section {
  padding: 80px 40px;
  background: var(--paper);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.gallery-item {
  aspect-ratio: 1;
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.gallery-placeholder {
  width: 100%;
  height: 100%;
  background: var(--bg);
  border: 2px solid var(--green-light);
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.gallery-item:hover .gallery-placeholder {
  background: linear-gradient(135deg, rgba(76, 175, 80, 0.1) 0%, rgba(46, 125, 50, 0.05) 100%);
  border-color: var(--green);
  transform: scale(1.02);
}

.gallery-placeholder svg {
  width: 60px;
  height: 60px;
  opacity: 0.5;
  color: var(--green);
}

/* CTA Section */
.waste-cta-section {
  padding: 100px 40px;
  background: linear-gradient(135deg, var(--green) 0%, var(--green-dark) 100%);
  text-align: center;
}

.cta-content {
  max-width: 800px;
  margin: 0 auto;
}

.cta-content h2 {
  font-size: 2rem;
  font-weight: 400;
  color: #ffffff;
  margin: 0 0 20px 0;
  font-family: 'Montserrat';
}

.cta-content p {
  font-size: 0.9rem;
  color: #ffffff;
  line-height: 1.8;
  margin: 0 0 40px 0;
  opacity: 0.95;
  font-family: 'Montserrat';
}

.waste-cta-button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #ffffff;
  color: var(--green-dark);
  padding: 18px 40px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 400;
  font-size: 0.9rem;
  font-family: 'Montserrat';
  transition: all 0.3s ease;
  border: 2px solid #ffffff;
}

.waste-cta-button:hover {
  background: transparent;
  color: #ffffff;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(255, 255, 255, 0.3);
}

.waste-cta-button svg {
  width: 20px;
  height: 20px;
}

/* Responsive */
@media (max-width: 1024px) {
  .project-overview-section {
    padding: 100px 20px 60px;
    background-attachment: scroll;
  }

  .project-main-title {
    font-size: 1.05rem;
  }

  .project-highlights,
  .components-grid,
  .impact-content,
  .tech-features {
    grid-template-columns: repeat(2, 1fr);
  }

  .approach-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .approach-visual {
    height: 300px;
  }

  .extrusion-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .extrusion-visual {
    height: 300px;
  }

  .testing-grid {
    grid-template-columns: 1fr;
  }

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

  .cta-content h2 {
    font-size: 1.05rem;
  }
}

@media (max-width: 800px) {
  .project-overview-section {
    padding: 0;
  }

  .project-overview-image {
    height: 250px;
    margin-bottom: 30px;
  }

  .project-overview-content {
    padding: 0 20px 40px;
  }

  .project-main-title {
    font-size: 1.5rem;
  }

  .what-we-do-section {
    padding: 40px 20px;
  }

  .section-title {
    font-size: 1.1rem;
    margin-bottom: 20px;
  }

  .project-content-wrapper {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .project-image-wrapper {
    height: 250px;
    order: -1;
  }

  .project-text-wrapper {
    text-align: center;
  }

  .project-text-wrapper p {
    text-align: center;
    font-size: 0.85rem;
  }
  .project-overview-section {
    padding: 80px 20px 50px;
    background-attachment: scroll;
  }

  .project-main-title {
    font-size: 2rem;
  }

  .project-intro {
    font-size: 0.9rem;
  }

  .what-we-do-section,
  .approach-section,
  .components-section,
  .impact-section,
  .tech-integration-section,
  .extrusion-section,
  .testing-section,
  .prototype-gallery-section,
  .waste-cta-section {
    padding: 60px 20px;
  }

  .what-we-do-section {
    background-attachment: scroll;
  }

  .section-title {
    font-size: 2rem;
  }

  .project-highlights,
  .components-grid,
  .impact-content,
  .tech-features {
    grid-template-columns: 1fr;
  }

  .container {
    padding: 0 20px;
  }

  .testimonial-card {
    min-width: 280px;
  }

  .cta-form {
    flex-direction: column;
  }
}

@media (max-width: 480px) {
  .project-overview-section {
    padding: 70px 15px 40px;
    background-attachment: scroll;
  }

  .project-main-title {
    font-size: 1.05rem;
  }

  .project-intro {
    font-size: 0.9rem;
  }

  .what-we-do-section,
  .approach-section,
  .components-section,
  .impact-section,
  .tech-integration-section,
  .extrusion-section,
  .testing-section,
  .prototype-gallery-section,
  .waste-cta-section {
    padding: 40px 15px;
  }

  .what-we-do-section {
    background-attachment: scroll;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .cta-content h2 {
    font-size: 2rem;
  }

  .cta-content p {
    font-size: 0.9rem;
  }
  }

  .section-title {
    font-size: 1.05rem;
  }

  .highlight-item,
  .component-card,
  .impact-item,
  .tech-feature {
    padding: 20px;
  }

  .container {
    padding: 0 15px;
  }
}

