/* Reset & Base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  background: radial-gradient(circle at center, #001a20 0%, #000 100%);
  color: #f5f5f5;
  line-height: 1.6;
}

h1, h2, h3, h4 {
  font-weight: 700;
  letter-spacing: -0.5px;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

.section {
  padding: 80px 0;
}

/* Header */
/* Header Navigation */
.navbar {
  background: radial-gradient(circle at top left, #001f2f, #000);
  padding: 24px 0; /* tighter vertical space */
}

.navbar.scrolled {
  background: radial-gradient(circle at top left, #001f2f, #000);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 30px;
}

/* --- Logo styling --- */
.logo-link {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.logo img {
  height: 40px; /* as requested */
  width: auto;
  object-fit: contain;
  margin-right: 10px;
}

.logo-text {
  font-size: 1.2rem;
  font-weight: 600;
  color: #fff;
  white-space: nowrap;
}

/* --- Navigation Links --- */
.main-nav {
  display: flex;
  align-items: center;
  gap: 30px;
}

.main-nav ul {
  display: flex;
  align-items: center;
  gap: 24px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.main-nav a {
  color: #f5f5f5;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  transition: color 0.3s ease;
}

.main-nav a:hover {
  color: #00ffe0;
}

.main-nav a.active {
  color: #00ffe0;
  position: relative;
}

.main-nav a.active::after {
  content: "";
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 100%;
  height: 2px;
  background: #00ffe0;
  border-radius: 2px;
}

/* --- CTA Button --- */
.nav-cta {
  background: rgba(0, 255, 224, 0.1);
  color: #00ffe0 !important;
  padding: 8px 18px; /* smaller & balanced */
  font-size: 0.85rem;
  border-radius: 24px;
  font-weight: 600;
  backdrop-filter: blur(8px);
  border: 1.5px solid rgba(0, 255, 224, 0.5);
  box-shadow: 0 0 0 1px rgba(0, 255, 224, 0.4);
  text-transform: uppercase;
  letter-spacing: 0.4px;
  transition: all 0.3s ease;
}

.nav-cta:hover {
  background: rgba(0, 255, 224, 0.15);
  box-shadow: 0 0 12px 2px rgba(0, 255, 224, 0.6), 0 0 20px rgba(0, 255, 224, 0.3);
  color: #ffffff !important;
  border-color: #00ffe0;
}


/* Hero Section */
.hero-banner {
  background: radial-gradient(circle at top left, #001f2f, #000);
  color: #fff;
  padding: 100px 0;
  clip-path: ellipse(100% 100% at 50% 0%);
}

.hero-grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 40px;
}

.hero-text {
  flex: 1;
  min-width: 300px;
}

.hero-text h1 {
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.3;
  background: linear-gradient(to right, #00ffe0, #00b8ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  display: inline-block;
  margin-bottom: 20px;
  text-align: left;
}

.hero-text p {
  font-size: 1.2rem;
  color: #ccc;
  max-width: 600px;
  line-height: 1.7;
  margin-bottom: 30px;
}

.hero-text strong {
  color: #00ffe0; /* neon aqua */
  font-weight: 700;
  background: linear-gradient(to right, #00ffe0, #00b8ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-emphasis-color: transparent;
}

.hero-btn {
  display: inline-block;
  padding: 14px 28px;
  border-radius: 30px;
  background: linear-gradient(to right, #00ffe0, #00b8ff);
  color: #111;
  font-weight: bold;
  font-size: 1rem;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(0, 255, 224, 0.2);
}

.hero-btn:hover {
  background: #00ffe0;
  color: #000;
  transform: translateY(-2px);
}

.hero-image {
  flex: 1;
  min-width: 300px;
  display: flex;
  justify-content: center;
}

.hero-image img {
  max-width: 100%;
  height: auto;
  border-radius: 16px;
}


/* Mission */
.mission-vision {
  color: #f5f5f5;
  padding: 100px 0;
  overflow: hidden;
  background: radial-gradient(circle at center, #001a20 0%, #000 100%);
  background-size: 100% 1000px; /* lock the height of the gradient */
}

.mission-vision-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  flex-wrap: wrap;
}

.mv-left {
  max-width: 600px;
}

.mv-left h2 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 20px;
  background: linear-gradient(to right, #00ffe0, #00b8ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

.mv-left p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #ccc;
  margin-bottom: 20px;
}

.mv-intro-image {
  width: 100%;
  max-width: 550px;
  border-radius: 14px;
  box-shadow: 0 10px 30px rgba(0, 255, 224, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.mv-intro-image:hover {
  transform: scale(1.02);
  box-shadow: 0 12px 40px rgba(0, 255, 224, 0.2);
}

.mv-right {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.mv-card {
  background: rgba(255, 255, 255, 0.03);
  border-left: 4px solid #00ffe0;
  padding: 30px 24px;
  border-radius: 16px;
  box-shadow: 0 6px 20px rgba(0, 255, 224, 0.05);
  transition: all 0.3s ease;
  backdrop-filter: blur(4px);
}

.mv-card:hover {
  background: linear-gradient(to bottom right, #00242a, #000);
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 255, 224, 0.1);
}

.mv-icon {
  font-size: 2.2rem;
  color: #00ffe0;
  margin-bottom: 12px;
}

.mv-label {
  font-weight: 700;
  font-size: 1.3rem;
  color: #ffffff;
  margin-bottom: 10px;
}

.mv-card p {
  font-size: 1rem;
  color: #bbb;
  line-height: 1.7;
}

.mv-image-strip {
  margin-top: 70px;
  width: 100%;
  border-radius: 10px;
  box-shadow: 0 6px 20px rgba(0, 255, 224, 0.08);
}

/* Pillars */
.pillars {
  background: radial-gradient(circle at center, #001a20 0%, #000 100%);
  background-size: 100% 600px; /* lock the height of the gradient */
  color: #f5f5f5;
  padding: 100px 0;
}

.pillars-container {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 60px;
  align-items: start;
}

.pillars-intro h2 {
  font-size: 2.4rem;
  margin-bottom: 20px;
  background: linear-gradient(to right, #00ffe0, #00b8ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  display: inline-block;
  text-align: center;
}

.pillars-intro p {
  font-size: 1rem;
  color: #ccc;
  line-height: 1.6;
  margin-bottom: 30px;
}

.pillars-cta {
  display: inline-block;
  background: linear-gradient(to right, #00ffe0, #00b8ff);
  color: #111;
  padding: 12px 24px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
}

.pillars-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}


.pillar-card {
  background: #1a1a1a;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
}

.pillar-card:hover {
  transform: translateY(-5px);
}

.pillar-img {
  height: 160px;
  background-size: cover;
  background-position: center;
  position: relative;
}

.pillar-icon {
  position: absolute;
  bottom: -20px;
  right: 16px;
  background: linear-gradient(to right, #00ffe0, #00b8ff);
  color: #111;
  font-size: 18px;
  width: 44px;                  /* Fixed width */
  height: 44px;                 /* Fixed height */
  display: flex;               /* Center content */
  align-items: center;
  justify-content: center;
  border-radius: 50%;          /* Perfect circle */
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
}


.pillar-text {
  padding: 20px;
}

.pillar-text h3 {
  color: #fff;
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.pillar-text p {
  color: #aaa;
  font-size: 0.95rem;
  line-height: 1.5;
}



/* ===================== METHODOLOGY ===================== */
.methodology.section {
  padding: 100px 0;
  background: radial-gradient(circle at center, #001a20 0%, #000 100%);
}

.methodology .section-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 50px;
  background: linear-gradient(to right, #00ffe0, #00b8ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  display: block;
  text-align: center;
}

.methodology .section-intro {
  color: #ccc;
  font-size: 1.1rem;
  max-width: 700px;
  margin: 0 auto 50px auto;
  text-align: center;
}

.methodology-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
  position: relative;
  margin-top: 60px;
}

/* === Step Card Wrapper with Connection Dots === */
.method-step-wrapper {
  flex: 1;
  min-width: 260px;
  position: relative;
}

.method-step-wrapper:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -25px;
  width: 50px;
  height: 1px;
  background-image: radial-gradient(circle, #00ffe0 1px, transparent 1px);
  background-size: 10px 10px;
  background-repeat: repeat-x;
  transform: translateY(-50%);
  z-index: 0;
}

/* === Step Card === */
.method-step {
  background: #0c1c1c;
  padding: 40px 30px;
  border-radius: 16px;
  text-align: center;
  border: 1px solid rgba(0, 255, 224, 0.12);
  box-shadow: 0 0 16px rgba(0, 255, 224, 0.05);
  transition: all 0.3s ease;
  position: relative;
  z-index: 1;
}

.method-step:hover {
  background: linear-gradient(to bottom right, #00242a, #000);
  transform: translateY(-6px);
  box-shadow: 0 0 25px rgba(0, 255, 224, 0.2);
}

/* === Step Badge (Number) === */
.step-badge {
  background: radial-gradient(circle, #00ffe0 0%, #00b8ff 100%);
  color: #000;
  font-weight: bold;
  font-size: 1.1rem;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px auto;
  box-shadow: 0 4px 20px rgba(0, 255, 224, 0.4);
  transition: transform 0.3s ease;
}

.method-step:hover .step-badge {
  transform: scale(1.1);
}

/* === Typography === */
.method-step h3 {
  font-size: 1.25rem;
  color: #00ffe0;
  font-weight: 700;
  margin-bottom: 16px;
}

.method-step p {
  color: #ccc;
  font-size: 0.95rem;
  line-height: 1.7;
}




/* Projects */
/* SECTION STYLING */
.dark-theme {
  background: radial-gradient(circle at center, #001a20 0%, #000 100%);
  padding: 80px 20px;
  color: white;
  font-family: Helvetica, sans-serif;
}

.projects .container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.section-title {
  font-size: 2rem;
  margin-bottom: 15px;
  background: linear-gradient(to right, #00ffe0, #00b8ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  display: inline-block;
  text-align: center;
}

.section-intro {
  font-size: 1rem;
  color: #ccc;
  max-width: 600px;
  margin: 0 auto 50px auto;
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  justify-items: center;
}

.project-card {
  background: #1b1b1f;
  border-radius: 16px;
  padding: 30px;
  max-width: 350px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
  text-align: left;
  position: relative;
}

.project-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 255, 200, 0.1);
}

.project-icon {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 2rem;
  color: #00ffe0;
}

.project-card img {
  width: 100%;
  height: 250px; /* increase height */
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 16px;
  box-shadow: 0 0 12px rgba(0, 255, 224, 0.1);
}

.project-card h3 {
  color: #fff;
  font-size: 1.1rem;
  margin-bottom: 10px;
}

.project-card p {
  font-size: 0.9rem;
  color: #ccc;
  line-height: 1.5;
}


/* ===================== VISION & SUSTAINABILITY ===================== */
section.vision-sustainability.section {
  padding: 80px 0;
  background: radial-gradient(circle at center, #001a20 0%, #000 100%);
}

section.vision-sustainability.section .section-title {
  font-size: 2.5rem;
  background: linear-gradient(to right, #00ffe0, #00b8ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  display: inline-block;
  text-align: center;
  margin-bottom: 20px;
  text-align: center;
}

section.vision-sustainability.section .vs-text p {
  color: #ccc;
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 20px;
}

section.vision-sustainability.section .vs-text .highlight {
  color: #00ffe0;
  font-weight: 600;
}

section.vision-sustainability.section .vs-image img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 0 20px rgba(0, 255, 224, 0.15);
}

.vs-flex {
  display: flex;
  flex-wrap: wrap;
  gap: 60px;
  align-items: center;
  justify-content: space-between;
}

/* Text Styling */
.vs-text {
  flex: 1;
  min-width: 280px;
  color: #ccc;
}

.vs-text .highlight {
  color: #00ffe0;
  font-weight: bold;
}

/* Image + Gradient Overlay */
.vs-image {
  flex: 1;
  min-width: 280px;
}

.image-wrapper {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  box-shadow: 0 0 60px rgba(0, 255, 224, 0.12);
}

.image-wrapper img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 16px;
  z-index: 1;
  position: relative;
  transition: transform 0.4s ease;
}

.image-overlay-gradient {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at center, rgba(0,255,224,0.1), transparent 70%);
  z-index: 2;
  mix-blend-mode: screen;
  pointer-events: none;
}

/* Hover Zoom Effect */
.image-wrapper:hover img {
  transform: scale(1.03);
}



/* Partners */
.partners.section {
  background: radial-gradient(circle at center, #001a20 0%, #000 100%);
  padding: 80px 20px;
  text-align: center;
  overflow: hidden;
}

.partners .section-title {
  background: linear-gradient(to right, #00ffe0, #00b8ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.partners .section-intro {
  color: #ccc;
  font-size: 1rem;
  max-width: 700px;
  margin: 0 auto 50px;
}

.logo-marquee {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.logo-track {
  display: flex;
  width: max-content;
  animation: scrollLogos 40s linear infinite;
  gap: 80px;
}

.logo-item {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-item img {
  max-height: 90px;
  width: auto;
  opacity: 0.85;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.logo-item img:hover {
  transform: scale(1.05);
  opacity: 1;
}

@keyframes scrollLogos {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-50%);
  }
}



.newsletter {
  background: radial-gradient(circle at center, #001a20 0%, #000 100%);
  color: #fff;
  text-align: center;
  padding: 100px 20px;
  position: relative;
  overflow: hidden;
}

.newsletter h3 {
  font-size: 2.2rem;
  margin-bottom: 16px;
  font-weight: 700;
  background: linear-gradient(to right, #00ffe0, #00b8ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

.newsletter p {
  font-size: 1.1rem;
  max-width: 700px;
  margin: 0 auto 40px auto;
  color: #ccc;
  line-height: 1.6;
}

.newsletter-form {
  display: flex;
  justify-content: center;
}

/* Enhanced CTA Button */
.cta-gradient-button {
  display: inline-block;
  padding: 16px 32px;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 50px;
  background: linear-gradient(to right, #00ffe0, #00b8ff);
  color: #111;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 8px 24px rgba(0, 255, 224, 0.2);
  position: relative;
  overflow: hidden;
}

.cta-gradient-button::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.1);
  transition: left 0.4s ease;
  border-radius: 50px;
}

.cta-gradient-button:hover::before {
  left: 100%;
}

.cta-gradient-button:hover {
  background: #00ffe0;
  color: #000;
  box-shadow: 0 12px 30px rgba(0, 255, 224, 0.25);
  transform: translateY(-2px);
}




/* Footer */
.footer {
  background: radial-gradient(circle at top left, #001f2f, #000);
  color: #ccc;
  padding: 60px 20px 30px;
  font-size: 0.95rem;
}

.footer-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: space-between;
}

.footer-column {
  flex: 1;
  min-width: 240px;
}

.footer-title {
  font-size: 1.2rem;
  color: #00ffe0;
  margin-bottom: 20px;
  font-weight: 600;
}

.footer a {
  color: #ccc;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer a:hover {
  color: #00ffe0;
}

.footer-tagline {
  font-style: italic;
  font-size: 0.95rem;
  margin-bottom: 12px;
  color: #aaa;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: #ccc;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #00ffe0;
}

.social-icons {
  display: flex;
  gap: 20px;
  margin-top: 10px;
}

.social-icons a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(0, 255, 224, 0.1);
  color: #00ffe0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 18px;
  transition: all 0.3s ease;
  text-decoration: none;
  border: 1px solid rgba(0, 255, 224, 0.3);
}

.social-icons a:hover {
  background-color: #00ffe0;
  color: #111;
  transform: scale(1.1);
  box-shadow: 0 0 12px rgba(0, 255, 224, 0.5);
}

.footer-newsletter {
  margin-top: 20px;
  display: flex;
  gap: 10px;
}

.footer-newsletter input {
  flex: 1;
  padding: 10px 16px;
  border-radius: 30px;
  border: none;
  background: #111;
  color: #fff;
}

.footer-newsletter input::placeholder {
  color: #888;
}

.footer-newsletter button {
  padding: 10px 20px;
  background: #00ffe0;
  color: #111;
  border: none;
  border-radius: 30px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s ease;
}

.footer-newsletter button:hover {
  background: #00b8ff;
}

.footer-bottom {
  text-align: center;
  margin-top: 40px;
  color: #777;
  font-size: 0.85rem;
}

.footer-bottom hr {
  border: 0;
  height: 1px;
  background: rgba(0, 255, 224, 0.15);
  margin-bottom: 20px;
}

/* Chatbase bubble button */
#chatbase-bubble-button {
  background: radial-gradient(circle at top left, #001f2f, #000) !important;
  border: 2px solid #00ffe0 !important;
  width: 60px !important;
  height: 60px !important;
  border-radius: 50% !important;
  box-shadow: 0 0 20px rgba(0, 255, 224, 0.2) !important;
  transition: all 0.3s ease !important;
  z-index: 9999 !important;
}

#chatbase-bubble-button:hover {
  transform: scale(1.1);
  background: radial-gradient(circle at center, #003f48, #000) !important;
  box-shadow: 0 0 30px rgba(0, 255, 224, 0.4) !important;
}

/* Make inner SVG icon glow slightly */
#chatbase-bubble-button svg {
  filter: drop-shadow(0 0 5px #00ffe0);
  width: 32px;
  height: 32px;
}

/* Chat bubble container (optional if you want to tweak that) */
#chatbase-message-bubbles {
  background: #001f2f !important;
  border-radius: 12px !important;
  box-shadow: 0 0 15px rgba(0, 255, 224, 0.15) !important;
  color: #fff !important;
  font-family: 'Open Sans', sans-serif;
}

/* Close button on chat bubble */
#chatbase-message-bubbles > div {
  background-color: #00ffe0 !important;
  color: #111 !important;
  font-weight: bold;
  font-size: 12px !important;
}

@media (max-width: 768px) {
  #chatbase-bubble-button {
    width: 72px !important;
    height: 72px !important;
  }

  #chatbase-bubble-button svg {
    width: 40px !important;
    height: 40px !important;
  }
}













/* === Mobile Header Styles === */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  background: none;
  border: none;
  z-index: 1001;
}

.menu-toggle .bar {
  width: 24px;
  height: 2px;
  background: #00ffe0;
  transition: all 0.3s ease;
}

/* Toggle Animation */
.menu-toggle.active .bar:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.menu-toggle.active .bar:nth-child(2) {
  opacity: 0;
}
.menu-toggle.active .bar:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Responsive Styles */
@media (max-width: 768px) {
  .nav-container {
    flex-wrap: wrap;
  }

  .menu-toggle {
    display: flex;
    z-index: 1001;
  }

  .main-nav {
    position: fixed;
    top: 0;
    right: 0;
    height: 100%;
    width: 100%;
    max-width: 320px;
    background: #000;
    padding: 80px 24px 40px;
    box-shadow: -2px 0 10px rgba(0, 255, 224, 0.2);
    transform: translateX(100%);
    transition: transform 0.4s ease;
    flex-direction: column;
    align-items: flex-start;
    z-index: 1000;
    overflow-y: auto;
  }

  .main-nav.open {
    transform: translateX(0);
  }

  .main-nav ul {
    flex-direction: column;
    width: 100%;
    gap: 20px;
    padding: 0;
    margin-bottom: 40px;
    list-style: none;
  }

  .main-nav a.nav-link {
    display: inline-block;
    position: relative;
    padding: 12px 0;
    font-size: 1.1rem;
    font-weight: 500;
    color: #f5f5f5;
    border: none;
    text-decoration: none;
  }

  .main-nav a.nav-link.active {
    color: #00ffe0;
  }

  .main-nav a.nav-link.active::after {
    content: "";
    position: absolute;
    bottom: 4px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #00ffe0;
  }

  .nav-cta {
    display: inline-block;
    width: 100%;
    padding: 14px 0;
    text-align: center;
    font-weight: 600;
    color: #00ffe0;
    border: 2px solid #00ffe0;
    border-radius: 30px;
    background: transparent;
    transition: all 0.3s ease;
    font-size: 1rem;
  }

  .nav-cta:hover {
    background: #00ffe0;
    color: #000;
  }
}



@media (max-width: 768px) {
  .hero-banner {
    padding: 80px 20px;
    clip-path: none;
  }

  .hero-grid {
    flex-direction: column-reverse;
    text-align: center;
  }

  .hero-text h1 {
    font-size: 2.2rem;
    text-align: center;
  }

  .hero-text p {
    font-size: 1rem;
    margin: 0 auto 25px;
  }

  .hero-btn {
    font-size: 0.95rem;
    padding: 12px 24px;
  }

  .hero-image {
    margin-bottom: 30px;
  }

  .hero-image img {
    max-width: 80%;
  }
}


@media (max-width: 992px) {
  .mission-vision-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .mv-left, .mv-right {
    max-width: 100%;
    text-align: center;
  }

  .mv-left h2 {
    font-size: 2.4rem;
    text-align: center;
  }

  .mv-left p {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 20px;
  }

  .mv-intro-image {
    margin: 0 auto;
  }

  .mv-right {
    align-items: center;
  }

  .mv-card {
    max-width: 500px;
    width: 100%;
    margin: 0 auto;
    padding: 24px 20px;
  }

  .mv-icon {
    font-size: 2rem;
  }

  .mv-label {
    font-size: 1.2rem;
  }

  .mv-card p {
    font-size: 0.95rem;
  }
}

@media (max-width: 576px) {
  .mv-left h2 {
    font-size: 2rem;
  }

  .mv-left p,
  .mv-card p {
    font-size: 0.9rem;
  }

  .mv-card {
    padding: 20px;
  }
}



@media (max-width: 992px) {
  .pillars-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .pillars-intro {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
  }

  .pillars-intro h2 {
    font-size: 2rem;
    text-align: center;
  }

  .pillars-intro p {
    font-size: 1rem;
    margin-bottom: 20px;
  }

  .pillars-cta {
    padding: 10px 20px;
    font-size: 0.95rem;
  }

  .pillars-grid {
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 24px;
  }

  .pillar-img {
    height: 140px;
  }

  .pillar-icon {
    font-size: 16px;
    width: 40px;
    height: 40px;
  }
}

@media (max-width: 576px) {
  .pillars {
    padding: 60px 20px;
  }

  .pillars-intro h2 {
    font-size: 1.8rem;
  }

  .pillar-text h3 {
    font-size: 1.1rem;
  }

  .pillar-text p {
    font-size: 0.9rem;
  }

  .pillars-cta {
    font-size: 0.9rem;
    padding: 10px 18px;
  }

  .pillar-img {
    height: 130px;
  }

  .pillar-icon {
    font-size: 15px;
    width: 36px;
    height: 36px;
  }
}


@media (max-width: 992px) {
  .methodology-grid {
    flex-direction: column;
    align-items: center;
    gap: 40px;
  }

  .method-step-wrapper {
    width: 100%;
    max-width: 500px;
  }

  .method-step-wrapper:not(:last-child)::after {
    display: none;
  }

  .method-step {
    padding: 30px 24px;
  }

  .step-badge {
    width: 44px;
    height: 44px;
    font-size: 1rem;
  }

  .method-step h3 {
    font-size: 1.15rem;
  }

  .method-step p {
    font-size: 0.95rem;
  }
}

@media (max-width: 576px) {
  .methodology.section {
    padding: 60px 20px;
  }

  .methodology .section-title {
    font-size: 2rem;
    margin-bottom: 30px;
  }

  .step-badge {
    width: 42px;
    height: 42px;
    font-size: 0.95rem;
  }

  .method-step {
    padding: 24px 20px;
  }

  .method-step h3 {
    font-size: 1.1rem;
    margin-bottom: 12px;
  }

  .method-step p {
    font-size: 0.9rem;
  }
}


@media (max-width: 992px) {
  .vs-flex {
    flex-direction: column;
    align-items: flex-start;
    gap: 40px;
  }

  .vs-text,
  .vs-image {
    width: 100%;
  }

  .section.vision-sustainability .section-title {
    font-size: 2rem;
    text-align: left;
  }

  .vs-text p {
    font-size: 1rem;
    line-height: 1.6;
  }
}

@media (max-width: 576px) {
  section.vision-sustainability.section {
    padding: 60px 20px;
  }

  .section.vision-sustainability .section-title {
    font-size: 1.8rem;
    margin-bottom: 16px;
  }

  .vs-text p {
    font-size: 0.95rem;
    margin-bottom: 16px;
  }

  .image-wrapper {
    border-radius: 12px;
  }

  .image-wrapper img {
    border-radius: 12px;
  }
}
