* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', sans-serif;
  color: #0f2b1f;
  background-color: #f8fafc;
}

.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 30px;
}

/* ── Top Navigation ─────────────────────────────────────────────── */
.top-nav {
  background-color: #0a3d62;
  color: white;
  padding: 20px 0;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0,0,0,0.15);
}

.top-nav .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.logo {
  font-size: 30px;
  font-weight: 900;
  line-height: 1.15;
  letter-spacing: -0.3px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.logo .green {
  color: #34c759;
}

.logo .circle {
  font-size: 0.9em;
  color: #34c759;
  margin-left: 3px;
}

.logo-subtitle {
  font-size: 18px;
  font-weight: 500;
  color: rgba(255,255,255,0.85);
  letter-spacing: 0.6px;
  text-transform: uppercase;
  white-space: nowrap;
}
.logo-img {
      height: 500px;
      width: auto;
      transition: transform 0.3s ease;
    }


nav ul {
  list-style: none;
  display: flex;
  gap: 36px;
  flex-wrap: wrap;
}

nav a {
  color: white;
  text-decoration: none;
  font-weight: 500;
  font-size: 15px;
  transition: color 0.2s;
}

nav a:hover {
  color: #34c759;
}

.right-menu {
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
}

.insights, .careers {
  color: white;
  text-decoration: none;
  font-weight: 500;
  font-size: 14.5px;
}

.contact-btn {
  background-color: #34c759;
  color: white;
  padding: 9px 22px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  font-size: 14.5px;
}

.search {
  font-size: 21px;
  color: white;
  text-decoration: none;
}

/* ── Hero ───────────────────────────────────────────────────────── */
.hero {
  height: 100vh;
  min-height: 680px;
  background: linear-gradient(rgba(10, 61, 98, 0.48), rgba(10, 61, 98, 0.58)),
              url('https://images.unsplash.com/photo-1581091226825-a6a2a5aee158?auto=format&fit=crop&q=80&w=2940') center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  padding-top: 90px;
}

.hero-content {
  max-width: 880px;
  padding: 0 20px;
}

.hero h1 {
  font-size: 4.6rem;
  font-weight: 700;
  margin-bottom: 24px;
  line-height: 1.08;
}

.subtitle {
  font-size: 1.48rem;
  line-height: 1.5;
  margin-bottom: 44px;
  opacity: 0.94;
}

.cta-button {
  display: inline-block;
  background-color: #34c759;
  color: white;
  font-size: 1.25rem;
  font-weight: 600;
  padding: 16px 44px;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.25s;
}

.cta-button:hover {
  background-color: #2ea043;
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(52, 199, 89, 0.28);
}

/* ── Responsive ─────────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .hero h1 { font-size: 4rem; }
  .subtitle { font-size: 1.35rem; }
}

@media (max-width: 850px) {
  .top-nav .container {
    flex-direction: column;
    gap: 18px;
    padding: 14px 20px;
  }
  nav ul {
    gap: 24px;
    justify-content: center;
  }
  .right-menu {
    justify-content: center;
  }
  .hero h1 { font-size: 3.4rem; }
  .subtitle { font-size: 1.25rem; }
}

@media (max-width: 600px) {
  .hero h1 { font-size: 2.8rem; }
  .subtitle { font-size: 1.1rem; line-height: 1.45; }
  .cta-button { padding: 14px 36px; font-size: 1.1rem; }
}
/* ── Simplifying Section ────────────────────────────────────────── */
.simplifying-section {
  padding: 100px 0 80px;
  background: #f8fafc;
  text-align: center;
}

.simplifying-section h2 {
  font-size: 3.2rem;
  margin-bottom: 24px;
  color: #0a3d62;
}

.intro-text {
  font-size: 1.25rem;
  line-height: 1.7;
  max-width: 900px;
  margin: 0 auto 40px;
  color: #334155;
}

.loops-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 32px;
  margin: 60px 0;
}

.loop-card {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(0,0,0,0.08);
  transition: transform 0.25s, box-shadow 0.25s;
  text-align: left;
}

.loop-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.12);
}

.loop-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.loop-card h3 {
  font-size: 1.8rem;
  margin: 24px 24px 12px;
  color: #0a3d62;
}

.loop-card p {
  padding: 0 24px 24px;
  font-size: 1.05rem;
  line-height: 1.6;
  color: #475569;
}

.loop-btn {
  display: block;
  margin: 0 24px 28px;
  background: #34c759;
  color: white;
  text-align: center;
  padding: 12px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.2s;
}

.loop-btn:hover {
  background: #2ea043;
}

/* Stats Bar */
.stats-bar {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
  background: linear-gradient(90deg, #0a3d62, #115278);
  color: white;
  padding: 60px 20px;
  border-radius: 16px;
  margin: 80px 0;
}

.stat {
  text-align: center;
  min-width: 180px;
}

.stat .number {
  font-size: 3.8rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.stat p {
  font-size: 1.1rem;
  opacity: 0.9;
}

/* Movement Section */
.movement-section {
  padding: 120px 0;
  background: linear-gradient(rgba(156, 199, 231, 0.65), rgba(4, 32, 53, 0.75)),
              url('https://thumbs.dreamstime.com/b/sustainable-future-eco-friendly-practices-circular-economy-hand-gently-holds-transparent-globe-featuring-infinity-symbol-390825476.jpg') center/cover no-repeat;
  color: white;
  text-align: center;
}

.movement-content {
  max-width: 860px;
  margin: 0 auto;
  padding: 0 20px;
}

.movement-section h2 {
  font-size: 3.5rem;
  margin-bottom: 32px;
}

.movement-section p {
  font-size: 1.3rem;
  line-height: 1.7;
  margin-bottom: 28px;
  opacity: 0.95;
}

.movement-btn {
  display: inline-block;
  background: #34c759;
  color: white;
  font-size: 1.3rem;
  font-weight: 600;
  padding: 18px 52px;
  border-radius: 8px;
  text-decoration: none;
  margin-top: 20px;
  transition: all 0.25s;
}

.movement-btn:hover {
  background: #2ea043;
  transform: translateY(-4px);
}

/* Responsive adjustments */
@media (max-width: 850px) {
  .simplifying-section h2 { font-size: 2.6rem; }
  .loops-grid { gap: 24px; }
  .stats-bar { gap: 30px; padding: 50px 15px; }
  .stat .number { font-size: 3rem; }
  .movement-section h2 { font-size: 2.8rem; }
}
/* ── Testimonials ───────────────────────────────────────────────── */
.testimonials-section {
  padding: 80px 0;
  background: #f8fafc;
  text-align: center;
}

.testimonial-card {
  max-width: 760px;
  margin: 0 auto;
  background: white;
  border-radius: 12px;
  padding: 40px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}

.testimonial-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
}

.testimonial-header h3 {
  font-size: 2.2rem;
  color: #0a3d62;
}

.arrows .arrow {
  font-size: 1.8rem;
  color: #34c759;
  cursor: pointer;
  margin: 0 12px;
}

blockquote p {
  font-size: 1.35rem;
  line-height: 1.6;
  font-style: italic;
  color: #334155;
  margin-bottom: 20px;
}

cite {
  font-size: 1.15rem;
  color: #64748b;
  font-weight: 500;
}

/* ── Awards ─────────────────────────────────────────────────────── */
.awards-section {
  padding: 80px 0;
  text-align: center;
  background: white;
}

.awards-section h2 {
  font-size: 2.8rem;
  margin-bottom: 20px;
  color: #0a3d62;
}

.awards-text {
  font-size: 1.2rem;
  max-width: 800px;
  margin: 0 auto 40px;
  color: #475569;
}

.awards-logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
}

.awards-logos img {
  height: 70px;
  width: auto;
  filter: grayscale(60%);
  transition: filter 0.3s;
}

.awards-logos img:hover {
  filter: grayscale(0%);
}

/* ── Knowledge / Insights ───────────────────────────────────────── */
.knowledge-section {
  padding: 100px 0;
  background: linear-gradient(90deg, #a8cbe4, #014064);
  color: white;
  text-align: center;
}

.knowledge-content {
  max-width: 900px;
  margin: 0 auto;
}

.knowledge-section h2 {
  font-size: 3rem;
  margin-bottom: 16px;
}

.knowledge-section p {
  font-size: 1.3rem;
  margin-bottom: 40px;
  opacity: 0.9;
}

.knowledge-buttons {
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}

.knowledge-btn {
  background: rgba(255,255,255,0.15);
  color: white;
  padding: 14px 36px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.15rem;
  backdrop-filter: blur(4px);
  transition: all 0.25s;
}

.knowledge-btn:hover {
  background: rgba(255,255,255,0.25);
  transform: translateY(-3px);
}

/* ── Contact Expert Form ────────────────────────────────────────── */
.contact-expert-section {
  padding: 100px 0 80px;
  background: #f8fafc;
  text-align: center;
}

.contact-expert-section h2 {
  font-size: 2.8rem;
  margin-bottom: 16px;
  color: #0a3d62;
}

.contact-expert-section p {
  font-size: 1.2rem;
  margin-bottom: 48px;
  color: #475569;
}

.expert-form {
  max-width: 760px;
  margin: 0 auto;
  text-align: left;
}

.form-row {
  display: flex;
  gap: 24px;
  margin-bottom: 24px;
}

.form-row input,
.form-row select {
  flex: 1;
  padding: 14px 18px;
  border: 1px solid #cbd5e1;
  border-radius: 6px;
  font-size: 1rem;
}

textarea {
  width: 100%;
  min-height: 140px;
  padding: 14px 18px;
  border: 1px solid #cbd5e1;
  border-radius: 6px;
  font-size: 1rem;
  margin-bottom: 20px;
}

.privacy-check {
  display: block;
  margin-bottom: 28px;
  font-size: 0.95rem;
  color: #475569;
}

.privacy-check a {
  color: #34c759;
  text-decoration: underline;
}

.submit-btn {
  background: #34c759;
  color: white;
  border: none;
  padding: 16px 60px;
  border-radius: 8px;
  font-size: 1.2rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.25s;
}

.submit-btn:hover {
  background: #2ea043;
  transform: translateY(-3px);
}
/* ── Footer ─────────────────────────────────────────────────────── */
.main-footer {
  background: #0a3d62;
  color: white;
  padding: 60px 0 30px;
  text-align: center;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 30px;
}

.footer-logo {
  font-size: 1.8rem;
  font-weight: 700;
}

.footer-links {
  display: flex;
  gap: 80px;
  flex-wrap: wrap;
}

.link-group h4 {
  font-size: 1.2rem;
  margin-bottom: 16px;
  color: #34c759;
}

.link-group ul {
  list-style: none;
}

.link-group a {
  color: rgba(255,255,255,0.85);
  text-decoration: none;
  line-height: 2;
}

.link-group a:hover {
  color: #34c759;
}

.copyright {
  margin-top: 60px;
  padding-top: 30px;
  border-top: 1px solid rgba(255,255,255,0.15);
  font-size: 0.95rem;
  opacity: 0.8;
}
/* Made by credit - small, light ash gray, bottom center */
.made-by {
  text-align: center;
  font-size: 11px;               /* very small */
  color: #a0a0a0;                /* light ash gray */
  margin-top: 20px;
  padding-bottom: 20px;
  opacity: 0.7;
  letter-spacing: 0.3px;
}

.made-by:hover {
  color: #34c759;                /* subtle green hover to match brand */
  opacity: 1;
}

/* ── Who We Do It For Page ──────────────────────────────────────── */
.who-hero {
  padding: 140px 0 100px;
  background: linear-gradient(135deg, #a3cdeb 0%, #009df8 100%);
  color: white;
  text-align: center;
}

.who-hero h1 {
  font-size: 4.2rem;
  line-height: 1.15;
  margin-bottom: 24px;
}

.who-hero .hero-subtitle {
  font-size: 1.45rem;
  max-width: 800px;
  margin: 0 auto;
  opacity: 0.92;
  line-height: 1.5;
}

.partnering-section {
  padding: 100px 0;
  background: #f8fafc;
  text-align: center;
}

.partnering-section h2 {
  font-size: 3rem;
  margin-bottom: 32px;
  color: #0a3d62;
}

.partnering-section .intro {
  font-size: 1.25rem;
  line-height: 1.7;
  max-width: 900px;
  margin: 0 auto 48px;
  color: #334155;
}

.sectors-list {
  list-style: none;
  columns: 3;
  column-gap: 60px;
  max-width: 1000px;
  margin: 0 auto 48px;
  text-align: left;
}

.sectors-list li {
  font-size: 1.15rem;
  line-height: 2.4;
  color: #475569;
}

.explore-work {
  padding: 100px 0;
  background: #0a3d62;
  color: white;
  text-align: center;
}

.explore-work h2 {
  font-size: 2.8rem;
  margin-bottom: 16px;
}

.explore-work > p {
  font-size: 1.3rem;
  margin-bottom: 60px;
  opacity: 0.9;
}

.cases-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 32px;
}

.case-card {
  background: white;
  border-radius: 12px;
  padding: 32px 24px;
  color: #0f2b1f;
  box-shadow: 0 6px 20px rgba(0,0,0,0.12);
  transition: transform 0.25s;
}

.case-card:hover {
  transform: translateY(-8px);
}

.case-logo {
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}

.case-logo img {
  max-height: 60px;
  max-width: 100%;
}

.case-card p {
  font-size: 1.15rem;
  margin-bottom: 20px;
  min-height: 70px;
}

.read-more {
  color: #34c759;
  font-weight: 600;
  text-decoration: none;
  font-size: 1.05rem;
}

.read-more:hover {
  text-decoration: underline;
}

/* Responsive */
@media (max-width: 850px) {
  .who-hero h1 { font-size: 3.2rem; }
  .sectors-list { columns: 2; }
}
/* Trusted by brands */
.trusted-brands {
  padding: 80px 0;
  text-align: center;
  background: #f8fafc;
}

.trusted-brands h2 {
  font-size: 2.6rem;
  margin-bottom: 40px;
  color: #0a3d62;
}

.brands-carousel {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 50px 80px;
  max-width: 1100px;
  margin: 0 auto;
}

.brands-carousel img {
  height: 50px;
  width: auto;
  filter: grayscale(70%);
  transition: filter 0.3s, transform 0.3s;
}

.brands-carousel img:hover {
  filter: grayscale(0%);
  transform: scale(1.1);
}

/* Scalable sustainability */
.scalable-sustainability {
  padding: 100px 0;
  background: white;
  text-align: center;
}

.scalable-sustainability h2 {
  font-size: 3rem;
  margin-bottom: 24px;
  color: #0a3d62;
}

.scalable-sustainability p {
  font-size: 1.25rem;
  max-width: 820px;
  margin: 0 auto 48px;
  line-height: 1.6;
  color: #475569;
}

.scalable-sustainability a {
  color: #34c759;
  text-decoration: underline;
}

.scalable-image img {
  width: 100%;
  max-width: 900px;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* Updated knowledge section */
.knowledge-section.updated {
  background: linear-gradient(90deg, #0a3d62, #1a5a8a);
  padding: 100px 0;
}

.insight-buttons {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
  margin-top: 40px;
}

.insight-btn {
  background: rgba(255,255,255,0.12);
  color: white;
  padding: 14px 38px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.15rem;
  transition: all 0.25s;
}

.insight-btn:hover {
  background: rgba(255,255,255,0.25);
  transform: translateY(-3px);
}

/* Get in touch form */
.get-in-touch {
  padding: 100px 0 80px;
  background: #f8fafc;
  text-align: center;
}

.get-in-touch h2 {
  font-size: 2.8rem;
  margin-bottom: 16px;
  color: #0a3d62;
}

.get-in-touch p {
  font-size: 1.2rem;
  margin-bottom: 48px;
  color: #475569;
}

.touch-form {
  max-width: 720px;
  margin: 0 auto;
}

.form-row {
  display: flex;
  gap: 24px;
  margin-bottom: 24px;
}

.form-row input,
.form-row select {
  flex: 1;
  padding: 14px 18px;
  border: 1px solid #cbd5e1;
  border-radius: 6px;
  font-size: 1rem;
}

.touch-form textarea {
  width: 100%;
  min-height: 130px;
  padding: 14px 18px;
  border: 1px solid #cbd5e1;
  border-radius: 6px;
  margin-bottom: 20px;
  font-size: 1rem;
}

.submit-btn {
  background: #34c759;
  color: white;
  border: none;
  padding: 16px 70px;
  border-radius: 8px;
  font-size: 1.2rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.25s;
}

.submit-btn:hover {
  background: #2ea043;
  transform: translateY(-3px);
}

/* Responsive */
@media (max-width: 768px) {
  .brands-carousel { gap: 40px 50px; }
  .form-row { flex-direction: column; gap: 16px; }
}

.dropdown {
  position: relative;
  display: inline-block;
}

.dropbtn {
  color: white;
  text-decoration: none;
  font-weight: 500;
  padding: 14px 16px;
  font-size: 15px;
  background: none;
  border: none;
  cursor: pointer;
}

.dropbtn:hover {
  color: #34c759;
}

.dropdown .arrow {
  font-size: 0.8em;
  margin-left: 6px;
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: #0a3d62;
  min-width: 220px;
  box-shadow: 0 8px 16px rgba(0,0,0,0.2);
  z-index: 1;
  border-radius: 6px;
  top: 100%;
  left: 0;
}

.dropdown-content a {
  color: white;
  padding: 14px 20px;
  text-decoration: none;
  display: block;
}

.dropdown-content a:hover {
  background-color: #115278;
  color: #34c759;
}

.dropdown:hover .dropdown-content {
  display: block;
}
/* Mobile adjustment - show dropdown on click if needed */
@media (max-width: 850px) {
  .dropdown-content {
    position: static;
    box-shadow: none;
    background: #115278;
  }
  .dropdown:hover .dropdown-content {
    display: none; /* optional - or keep open */
  }
}

/* Discover Page Styles */
.discover-hero {
  padding: 140px 0 100px;
  background: linear-gradient(135deg, #0a5c3e 0%, #115278 100%); /* green-teal gradient like screenshot */
  color: white;
  text-align: center;
}

.breadcrumb {
  font-size: 0.95rem;
  opacity: 0.8;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.discover-hero h1 {
  font-size: 4.5rem;
  margin-bottom: 24px;
  line-height: 1.1;
}

.hero-subtitle {
  font-size: 1.4rem;
  max-width: 780px;
  margin: 0 auto 60px;
  line-height: 1.5;
  opacity: 0.95;
}

.discover-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
}

.discover-card {
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 12px;
  padding: 40px 28px;
  text-align: left;
  transition: all 0.3s;
  position: relative;
}

.discover-card:hover {
  transform: translateY(-8px);
  background: rgba(255,255,255,0.18);
}

.discover-card h3 {
  font-size: 1.8rem;
  margin-bottom: 20px;
}

.card-arrow {
  position: absolute;
  bottom: 28px;
  right: 28px;
  font-size: 2.2rem;
  color: #34c759;
  text-decoration: none;
  font-weight: bold;
}

/* Footer adjustments for discover style */
.discover-footer {
  background: #0a3d62;
}

.footer-columns {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 40px;
  margin-top: 40px;
}

.footer-column h4 {
  color: #34c759;
  margin-bottom: 16px;
}

.footer-column ul {
  list-style: none;
}

.footer-column a {
  color: rgba(255,255,255,0.85);
  line-height: 2.2;
  text-decoration: none;
}

.footer-column a:hover {
  color: white;
}

.footer-bottom {
  text-align: center;
  margin-top: 60px;
  padding-top: 30px;
  border-top: 1px solid rgba(255,255,255,0.15);
  font-size: 0.95rem;
  opacity: 0.8;
}

.social-icons a {
  color: white;
  margin: 0 10px;
  font-size: 1.4rem;
}

/* Why We Do It Page */
.why-hero {
  padding: 140px 0 100px;
  background: linear-gradient(90deg, #0a5c3e, #115278);
  color: white;
  text-align: center;
}

.why-hero h1 { font-size: 4.8rem; margin-bottom: 20px; }
.hero-subtitle { font-size: 1.5rem; max-width: 800px; margin: 0 auto; }

.redefining-section, .case-section, .how-section {
  padding: 100px 0;
  text-align: center;
}

.redefining-section h2, .case-section h2, .how-section h2 {
  font-size: 3rem;
  color: #0a3d62;
  margin-bottom: 32px;
}

.intro { font-size: 1.25rem; line-height: 1.7; max-width: 900px; margin: 0 auto 60px; color: #475569; }

.image-cards, .values-grid, .loops-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 32px;
  margin: 60px 0;
}

.card, .value-card, .loop-card, .focus-card {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(0,0,0,0.08);
  padding: 24px;
  text-align: left;
}

.card img, .value-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
}

.btn, .cta-button, .movement-btn, .submit-btn {
  background: #34c759;
  color: white;
  padding: 12px 28px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  display: inline-block;
  margin-top: 16px;
  transition: all 0.25s;
}

.btn:hover, .cta-button:hover { background: #2ea043; transform: translateY(-3px); }

.movement-banner {
  margin-top: 60px;
  position: relative;
  border-radius: 12px;
  overflow: hidden;
}

.movement-banner img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

.movement-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  text-align: center;
  max-width: 80%;
}

.focus-areas { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 24px; margin-bottom: 80px; }

.focus-card { background: #f0f9ff; padding: 32px; border-radius: 12px; }

.focus-card a { color: #34c759; font-size: 1.5rem; text-decoration: none; }

/* Contact form styles (already have some – adjust if needed) */
.contact-section { background: #f8fafc; }
.contact-form { max-width: 760px; margin: 0 auto; }
.form-row { display: flex; gap: 24px; margin-bottom: 24px; }
.form-row input, .form-row select { flex: 1; padding: 14px; border: 1px solid #cbd5e1; border-radius: 6px; }
textarea { width: 100%; min-height: 140px; padding: 14px; margin-bottom: 20px; border: 1px solid #cbd5e1; border-radius: 6px; }

/* Discover Buttons */
.discover-btn {
  display: block;
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 12px;
  padding: 40px 28px;
  text-align: left;
  color: inherit;
  text-decoration: none;
  transition: all 0.3s;
  position: relative;
}

.discover-btn:hover {
  transform: translateY(-8px);
  background: rgba(255,255,255,0.18);
  cursor: pointer;
}

.discover-btn h3 {
  font-size: 1.8rem;
  margin-bottom: 20px;
}

.discover-btn .card-arrow {
  position: absolute;
  bottom: 28px;
  right: 28px;
  font-size: 2.2rem;
  color: #34c759;
  font-weight: bold;
}

/* Our Technology Page */

.tech-hero {
  padding: 140px 0 100px;
  background: linear-gradient(135deg, #0a5c3e, #115278);
  color: white;
  text-align: center;
}

.breadcrumb {
  font-size: 0.95rem;
  opacity: 0.85;
  margin-bottom: 12px;
  letter-spacing: 0.5px;
}

.tech-hero h1 {
  font-size: 4.5rem;
  line-height: 1.1;
  margin-bottom: 24px;
}

.hero-subtitle {
  font-size: 1.45rem;
  max-width: 780px;
  margin: 0 auto;
  opacity: 0.95;
}

.tech-powered {
  padding: 100px 0;
  background: #f8fafc;
  text-align: center;
}

.tech-powered h2 {
  font-size: 3.2rem;
  color: #0a3d62;
  margin-bottom: 32px;
}

.lead-text {
  font-size: 1.3rem;
  line-height: 1.7;
  max-width: 900px;
  margin: 0 auto 40px;
  color: #334155;
}

.btn-primary {
  display: inline-block;
  background: #34c759;
  color: white;
  padding: 16px 48px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.2rem;
  transition: all 0.25s;
}

.btn-primary:hover {
  background: #2ea043;
  transform: translateY(-3px);
}

.innovation-impact {
  padding: 100px 0;
  background: white;
  text-align: center;
}

.innovation-impact h2 {
  font-size: 2.8rem;
  color: #0a3d62;
  margin-bottom: 24px;
}

.impact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 40px;
  margin-top: 60px;
}

.impact-item {
  background: #f0f9ff;
  border-radius: 12px;
  padding: 32px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.impact-item img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
}

.impact-item h3 {
  font-size: 1.6rem;
  margin-bottom: 12px;
  color: #0a3d62;
}

.features-section {
  padding: 80px 0 120px;
  background: #f8fafc;
}

.feature-block {
  display: flex;
  align-items: center;
  gap: 60px;
  margin-bottom: 100px;
  flex-wrap: wrap;
}

.feature-block.reverse {
  flex-direction: row-reverse;
}

.feature-text {
  flex: 1;
  min-width: 300px;
}

.feature-text h2 {
  font-size: 2.6rem;
  color: #0a3d62;
  margin-bottom: 24px;
}

.feature-text p {
  font-size: 1.15rem;
  line-height: 1.7;
  color: #475569;
}

.feature-image img {
  width: 100%;
  max-width: 520px;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.12);
}

.sustainable-block {
  text-align: center;
  max-width: 900px;
  margin: 80px auto 0;
}

.sustainable-block h2 {
  font-size: 2.8rem;
  margin-bottom: 24px;
}

.ambition-section {
  padding: 100px 0;
  background: white;
  text-align: center;
}

.ambition-section h2 {
  font-size: 3rem;
  margin-bottom: 32px;
  color: #0a3d62;
}

.ambition-form {
  max-width: 720px;
  margin: 0 auto 80px;
}

.form-row {
  display: flex;
  gap: 24px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}

.form-row input,
.form-row select {
  flex: 1;
  min-width: 220px;
  padding: 14px 18px;
  border: 1px solid #cbd5e1;
  border-radius: 6px;
  font-size: 1rem;
}

.ambition-form textarea {
  width: 100%;
  min-height: 140px;
  padding: 14px 18px;
  border: 1px solid #cbd5e1;
  border-radius: 6px;
  margin-bottom: 20px;
}

.checkbox-label {
  display: block;
  margin-bottom: 28px;
  font-size: 0.95rem;
  color: #475569;
}

.checkbox-label a {
  color: #34c759;
}

.submit-btn {
  background: #34c759;
  color: white;
  border: none;
  padding: 16px 60px;
  border-radius: 8px;
  font-size: 1.2rem;
  font-weight: 600;
  cursor: pointer;
}

.submit-btn:hover {
  background: #2ea043;
}

.accreditations {
  margin-top: 80px;
}

.accreditations h3 {
  font-size: 1.8rem;
  margin-bottom: 32px;
  color: #0a3d62;
}

.logos-carousel {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px 60px;
}

.logos-carousel img {
  height: 70px;
  width: auto;
  filter: grayscale(40%);
  transition: filter 0.3s;
}

.logos-carousel img:hover {
  filter: grayscale(0%);
}

/* Responsive */
@media (max-width: 1024px) {
  .feature-block, .feature-block.reverse {
    flex-direction: column;
    text-align: center;
  }
  .feature-image img {
    max-width: 100%;
  }
}


/* Contact Us Page */

.contact-hero {
  padding: 150px 0 150px;
  background: linear-gradient(135deg, #0a5c3e 0%, #115278 100%);
  color: white;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.contact-hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 120px;
  background: linear-gradient(to right, #0a5c3e, #115278);
  clip-path: ellipse(150% 100% at 50% 100%);
}

.breadcrumb {
  font-size: 0.95rem;
  opacity: 0.85;
  margin-bottom: 12px;
}

.contact-hero h1 {
  font-size: 4.2rem;
  margin-bottom: 20px;
}

.hero-subtitle {
  font-size: 1.4rem;
  max-width: 700px;
  margin: 0 auto;
  opacity: 0.95;
}

.contact-main {
  padding: 80px 0 120px;
  background: #f8fafc;
}

.contact-layout {
  display: flex;
  gap: 80px;
  flex-wrap: wrap;
}

.contact-info {
  flex: 1;
  min-width: 320px;
}

.contact-info h2 {
  font-size: 2.4rem;
  color: #0a3d62;
  margin-bottom: 24px;
}

.contact-info p {
  font-size: 1.15rem;
  line-height: 1.7;
  color: #475569;
  margin-bottom: 32px;
}

.contact-methods .method {
  margin-bottom: 28px;
}

.contact-methods strong {
  display: block;
  font-size: 1.15rem;
  color: #0a3d62;
  margin-bottom: 6px;
}

.contact-methods p {
  margin: 0;
  font-size: 1.1rem;
}

.contact-methods a {
  color: #34c759;
  text-decoration: none;
}

.contact-methods a:hover {
  text-decoration: underline;
}

.contact-form-wrapper {
  flex: 1.4;
  background: white;
  padding: 48px;
  border-radius: 12px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.08);
}

.contact-form .form-row {
  display: flex;
  gap: 24px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}

.form-group {
  flex: 1;
  min-width: 220px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
  color: #334155;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid #cbd5e1;
  border-radius: 6px;
  font-size: 1rem;
}

.form-group textarea {
  min-height: 140px;
  resize: vertical;
}

.checkbox {
  margin: 24px 0;
}

.checkbox label {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.95rem;
  color: #475569;
}

.checkbox a {
  color: #34c759;
}

.submit-btn {
  background: #34c759;
  color: white;
  border: none;
  padding: 16px 60px;
  border-radius: 8px;
  font-size: 1.2rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.25s;
  width: 100%;
  max-width: 300px;
  display: block;
  margin: 0 auto;
}

.submit-btn:hover {
  background: #2ea043;
  transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 1024px) {
  .contact-layout {
    flex-direction: column;
    gap: 60px;
  }
  .contact-form-wrapper {
    padding: 32px;
  }
}

/* Services Page Styles */

.services-hero {
  padding: 140px 0 100px;
  background: linear-gradient(135deg, #0a5c3e 0%, #115278 100%);
  color: white;
  text-align: center;
}

.breadcrumb {
  font-size: 0.95rem;
  opacity: 0.85;
  margin-bottom: 12px;
  letter-spacing: 0.5px;
}

.services-hero h1 {
  font-size: 4.5rem;
  margin-bottom: 24px;
}

.hero-subtitle {
  font-size: 1.45rem;
  max-width: 780px;
  margin: 0 auto;
  opacity: 0.95;
}

.services-main {
  padding: 100px 0;
  background: #f8fafc;
}

.services-intro {
  text-align: center;
  max-width: 900px;
  margin: 0 auto 60px;
}

.services-intro h2 {
  font-size: 3rem;
  color: #0a3d62;
  margin-bottom: 24px;
}

.services-intro p {
  font-size: 1.25rem;
  line-height: 1.7;
  color: #475569;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
  gap: 40px;
  margin-bottom: 80px;
}

.service-card {
  background: white;
  border-radius: 12px;
  padding: 40px 32px;
  box-shadow: 0 6px 24px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
  text-align: left;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.12);
}

.service-icon {
  font-size: 3.5rem;
  margin-bottom: 24px;
  color: #34c759;
}

.service-card h3 {
  font-size: 2rem;
  color: #0a3d62;
  margin-bottom: 16px;
}

.service-card ul {
  list-style: none;
  padding: 0;
  margin: 24px 0;
}

.service-card li {
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 12px;
  position: relative;
  padding-left: 24px;
}

.service-card li::before {
  content: "→";
  color: #34c759;
  position: absolute;
  left: 0;
  font-weight: bold;
}

.service-btn {
  display: inline-block;
  color: #34c759;
  font-weight: 600;
  text-decoration: none;
  margin-top: 16px;
  transition: color 0.2s;
}

.service-btn:hover {
  color: #2ea043;
}

.services-cta {
  text-align: center;
  background: linear-gradient(135deg, #0a3d62, #115278);
  color: white;
  padding: 80px 40px;
  border-radius: 16px;
}

.services-cta h2 {
  font-size: 2.8rem;
  margin-bottom: 20px;
}

.services-cta p {
  font-size: 1.3rem;
  max-width: 700px;
  margin: 0 auto 32px;
  opacity: 0.95;
}

.btn-primary {
  background: #34c759;
  color: white;
  padding: 18px 52px;
  border-radius: 8px;
  text-decoration: none;
  font-size: 1.25rem;
  font-weight: 600;
  transition: all 0.25s;
}

.btn-primary:hover {
  background: #2ea043;
  transform: translateY(-3px);
}

/* Responsive */
@media (max-width: 102px) {
  .services-hero h1 { font-size: 3.6rem; }
  .services-grid { gap: 15px; }
}

/* Logo with image */
.logo {
  display: block;
  text-decoration: none;
  max-width: 15px;          /* adjust this to control logo size */
  transition: opacity 0.3s;
}

.logo:hover {
  opacity: 0.85;
}

.logo-img {
  width: 100%;
  height: auto;
  display: block;
}

/* Hide text logo parts if they still exist (optional cleanup) */
.logo span,
.logo .circle,
.logo-subtitle {
  display: none;
}



.page-hero {
  padding: 140px 0 100px;
  background: linear-gradient(135deg, #0a5c3e 0%, #115278 100%);
  color: white;
  text-align: center;
}

.page-hero h1 {
  font-size: 4rem;
  margin-bottom: 24px;
  line-height: 1.1;
}

.page-hero .lead {
  font-size: 1.4rem;
  max-width: 900px;
  margin: 0 auto;
  opacity: 0.95;
  line-height: 1.6;
}

.recycle-content {
  padding: 100px 0 120px;
  background: #f8fafc;
}

.section-block {
  margin-bottom: 100px;
}

.section-block h2 {
  font-size: 2.8rem;
  color: #0a3d62;
  margin-bottom: 32px;
  position: relative;
  display: inline-block;
}

.section-block h2::after {
  content: '';
  position: absolute;
  bottom: -12px;
  left: 0;
  width: 100px;
  height: 4px;
  background: #34c759;
  border-radius: 2px;
}

.intro {
  font-size: 1.25rem;
  line-height: 1.8;
  color: #475569;
  margin-bottom: 40px;
}

.benefit-grid,
.service-highlights {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 32px;
  margin-top: 40px;
}

.benefit-item,
.highlight-card {
  background: white;
  border-radius: 12px;
  padding: 36px 28px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.07);
  transition: all 0.3s ease;
}

.benefit-item:hover,
.highlight-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.12);
}

.benefit-item h3,
.highlight-card h3 {
  font-size: 1.7rem;
  color: #0a3d62;
  margin-bottom: 16px;
}

.benefit-item p,
.highlight-card ul {
  font-size: 1.08rem;
  line-height: 1.7;
  color: #475569;
}

.highlight-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.highlight-card li {
  margin-bottom: 16px;
  padding-left: 24px;
  position: relative;
}

.highlight-card li::before {
  content: "✔";
  color: #34c759;
  position: absolute;
  left: 0;
  font-weight: bold;
}

.read-more {
  color: #34c759;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  margin-top: 12px;
}

.read-more:hover {
  text-decoration: underline;
}

.cta-final {
  text-align: center;
  background: linear-gradient(135deg, #0a3d62, #115278);
  color: white;
  padding: 80px 40px;
  border-radius: 16px;
  margin-top: 80px;
}

.cta-final h2 {
  font-size: 2.6rem;
  margin-bottom: 24px;
}

.cta-final .cta-button {
  background: #34c759;
  color: white;
  padding: 18px 52px;
  border-radius: 8px;
  font-size: 1.3rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.25s;
}

.cta-final .cta-button:hover {
  background: #2ea043;
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(52, 199, 89, 0.35);
}

/* Responsive */
@media (max-width: 1024px) {
  .page-hero h1 { font-size: 3.2rem; }
  .section-block h2 { font-size: 2.4rem; }
}

@media (max-width: 768px) {
  .benefit-grid, .service-highlights {
    grid-template-columns: 1fr;
  }
}




























/* ===== HEADER (Blue Background) ===== */
header {
  position: fixed;
  width: 100%;
  top: 0;
  background: #0a3d62; /* BLUE */
  z-index: 1000;
}

/* Navbar layout */
.nav-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 120px;
}

/* Logo */
.logo img {
  height: 90px;
}

/* Navigation links */
nav ul {
  list-style: none;
  display: flex;
  gap: 30px;
}

nav a {
  text-decoration: none;
  color: #ffffff;
  font-weight: 500;
}

/* Contact button */
.contact-btn {
  background: #34c759;
  color: #ffffff;
  padding: 10px 22px;
  border-radius: 6px;
  font-weight: 600;
}

/* ===== Mobile Menu ===== */
.menu-toggle {
  display: none;
  font-size: 2.2rem;
  color: #ffffff;
  background: none;
  border: none;
  cursor: pointer;
}

/* ===== Responsive (Mobile) ===== */
@media (max-width: 768px) {

  .menu-toggle {
    display: block;
  }

  nav {
    position: absolute;
    top: 120px;
    left: 0;
    width: 100%;
    background: #0a3d62;
    display: none;
  }

  nav ul {
    flex-direction: column;
    padding: 20px 0;
    gap: 20px;
    text-align: center;
  }

  nav.active {
    display: block;
  }
}






