:root {
  --green: #16a34a;
  --yellow: #ffd36e;
  --text: #0b1220;
  --border: #e6e8ec;
}

/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Inter", sans-serif;
  scroll-behavior: smooth;
}

body {
  background: #000;
  color: white;
}

/* HERO SECTIONS OF THE PAGES */

.hero {
  height: 60vh;
  display: flex;
  align-items: center;
  padding: 120px 8%;
  position: relative;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: url("https://images.unsplash.com/photo-1509391366360-2e959784a276?auto=format&fit=crop&w=1800&q=80")
    center/cover;
  filter: brightness(0.45);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(19, 114, 7, 0.4), rgba(0, 0, 0, 0.7));
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
}

.badge {
  display: inline-block;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(22, 163, 74, 0.2);
  color: var(--green);
  font-weight: 600;
  font-size: 12px;
}

.hero-content h1 {
  font-size: 3rem;
  margin-top: 12px;
}

.hero-content h1 span {
  color: var(--yellow);
}

.hero-content p {
  margin-top: 14px;
  color: #cbd5e1;
  max-width: 600px;
}
-------------------------------------------------

/* OVERLAY */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(19, 114, 7, 0.3),
    rgba(19, 114, 7, 0.3)
  );
}

/* CONTENT */
.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 40px;
  width: 100%;
}

.badge {
  display: inline-block;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(22, 163, 74, 0.2);
  color: var(--green);
  font-weight: 600;
  font-size: 12px;
}

.hero-text h1 {
  font-size: 3.5rem;
  margin-top: 12px;
  line-height: 1.1;
}

.hero-text h1 span {
  color: var(--yellow);
}

.hero-text p {
  margin-top: 15px;
  color: #cbd5e1;
  max-width: 520px;
}

/* CTA */
.hero-cta {
  margin-top: 25px;
  display: flex;
  gap: 12px;
}

.btn {
  padding: 12px 20px;
  border-radius: 999px;
  font-weight: 700;
  border: none;
  cursor: pointer;
}

.primary {
  background: var(--yellow);
  color: #000;
}

.secondary {
  background: transparent;
  border: 1px solid #444;
  color: white;
}

/* KPI CARD */
.hero-card {
  background: white;
  color: #000;
  padding: 22px;
  border-radius: 18px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.progress {
  height: 10px;
  background: #eee;
  border-radius: 999px;
  margin-top: 12px;
  overflow: hidden;
}

.progress div {
  width: 78%;
  height: 100%;
  background: linear-gradient(90deg, var(--green), var(--yellow));
}

.stats {
  display: flex;
  justify-content: space-between;
  margin-top: 15px;
}

.stats strong {
  font-size: 1.5rem;
  color: var(--green);
}

/* MOBILE */
@media (max-width: 900px) {
  .hero-inner {
    grid-template-columns: 1fr;
  }

  .hero-text h1 {
    font-size: 2.5rem;
  }
}

.partners {
  padding: 100px 8%;
  background: linear-gradient(
    180deg,
    rgba(19, 114, 7, 0.3),
    rgba(19, 114, 7, 0.3)
  );
  color: white;
}

.partners-inner {
  max-width: 1100px;
  margin: auto;
  text-align: center;
}

.partners-header h2 {
  font-size: 2.4rem;
  letter-spacing: -0.5px;
}

.partners-header p {
  margin-top: 10px;
  color: #9ca3af;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  font-size: 14px;
}

/* GRID */
.partners-grid {
  margin-top: 50px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

/* CARD */
.partner-card {
  padding: 28px 20px;
  border-radius: 16px;
  background: white;
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
  position: relative;
  overflow: hidden;
  transition: 0.35s ease;
  cursor: default;
}

/* glow effect */
.partner-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at top left,
    rgba(255, 211, 110, 0.12),
    transparent 60%
  );
  opacity: 0;
  transition: 0.35s;
}

.partner-card span {
  font-weight: 700;
  letter-spacing: 1.5px;
  color: #cbd5e1;
  position: relative;
  z-index: 2;
}

/* hover */
.partner-card:hover {
  transform: translateY(-8px);
  border-color: rgba(255, 211, 110, 0.4);
}

.partner-card:hover::before {
  opacity: 1;
}

.partner-card:hover span {
  color: #ffd36e;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .partners-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .partners-grid {
    grid-template-columns: 1fr;
  }
}

.about {
  padding: 110px 8%;
  background: #f7faf8;
}

.about-inner {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

/* IMAGE */
.about-media img {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
  transition: 0.4s ease;
}

.about-media img:hover {
  transform: scale(1.02);
}

/* TEXT */
.about-badge {
  display: inline-block;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(22, 163, 74, 0.1);
  color: #16a34a;
  font-weight: 600;
  font-size: 12px;
}

.about-content h2 {
  font-size: 2.6rem;
  margin-top: 14px;
  line-height: 1.2;
  letter-spacing: -0.5px;
  color: #16a34a;
}

.about-content h2 span {
  color: #16a34a;
}

.about-content p {
  margin-top: 16px;
  color: #667085;
  line-height: 1.6;
  max-width: 520px;
}

/* POINTS */
.about-points {
  margin-top: 25px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}

.point {
  background: white;
  padding: 14px;
  border-radius: 14px;
  border: 1px solid #e6e8ec;
  transition: 0.3s;
}

.point:hover {
  border-color: #16a34a;
  transform: translateY(-4px);
}

.point strong {
  display: block;
  color: #0b1220;
  font-size: 14px;
}

.point span {
  font-size: 12px;
  color: #667085;
}

/* CTA */
.about-cta {
  margin-top: 25px;
  display: flex;
  gap: 12px;
}

.about-cta button {
  padding: 12px 18px;
  border-radius: 999px;
  border: none;
  font-weight: 700;
  cursor: pointer;
  background: #ffd36e;
}

.about-cta .secondary {
  background: transparent;
  border: 1px solid #16a34a;
  color: #16a34a;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .about-inner {
    grid-template-columns: 1fr;
  }

  .about-content h2 {
    font-size: 2.1rem;
  }

  .about-points {
    grid-template-columns: 1fr;
  }
}

.services {
  padding: 110px 8%;
  background: #ffffff;
}

.services-inner {
  max-width: 1200px;
  margin: auto;
}

/* HEADER */
.services-header {
  text-align: center;
  max-width: 700px;
  margin: auto;
}

.services-header .badge {
  display: inline-block;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(22, 163, 74, 0.1);
  color: #16a34a;
  font-weight: 600;
  font-size: 12px;
}

.services-header h2 {
  font-size: 2.6rem;
  margin-top: 14px;
  letter-spacing: -0.5px;
  color: #16a34a;
}

.services-header p {
  margin-top: 12px;
  color: #667085;
  line-height: 1.6;
}

/* GRID */
.services-grid {
  margin-top: 50px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

/* CARD */
.service-card {
  background: #f7faf8;
  border: 1px solid #e6e8ec;
  padding: 26px;
  border-radius: 18px;
  transition: 0.35s ease;
  position: relative;
  overflow: hidden;
}

/* hover glow */
.service-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at top left,
    rgba(22, 163, 74, 0.15),
    transparent 60%
  );
  opacity: 0;
  transition: 0.35s;
}

.service-card:hover {
  transform: translateY(-8px);
  border-color: #16a34a;
}

.service-card:hover::before {
  opacity: 1;
}

.service-card .icon {
  font-size: 26px;
  margin-bottom: 12px;
}

.service-card h3 {
  font-size: 1.1rem;
  margin-bottom: 10px;
  color: #0b1220;
}

.service-card p {
  color: #667085;
  line-height: 1.6;
  font-size: 14px;
}

/* highlighted card */
.service-card.highlight {
  background: #022f0b;
  color: white;
  border: none;
}

.service-card.highlight p {
  color: #cbd5e1;
}

.service-card.highlight h3 {
  color: #ffd36e;
}

/* RESPONSIVE */
@media (max-width: 1000px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 650px) {
  .services-grid {
    grid-template-columns: 1fr;
  }

  .services-header h2 {
    font-size: 2rem;
  }
}

.recommended {
  padding: 110px 8%;
  background: rgba(19, 114, 7, 0.3);
  color: white;
}

.recommended-inner {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
}

/* BADGE */
.badge {
  display: inline-block;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(255, 211, 110, 0.1);
  color: #ffd36e;
  font-weight: 600;
  font-size: 12px;
}

/* TEXT */
.recommended-text h2 {
  font-size: 2.6rem;
  margin-top: 14px;
  line-height: 1.2;
}

.recommended-text h2 span {
  color: #ffd36e;
}

.recommended-text p {
  margin-top: 14px;
  color: #cbd5e1;
  line-height: 1.6;
  max-width: 520px;
}

/* STATS */
.recommended-stats {
  margin-top: 25px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
}

.stat {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 16px;
  border-radius: 14px;
  text-align: center;
  transition: 0.3s;
}

.stat:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 211, 110, 0.4);
}

.stat strong {
  font-size: 1.4rem;
  color: #ffd36e;
  display: block;
}

.stat span {
  font-size: 12px;
  color: #94a3b8;
}

/* CTA */
.recommended-cta {
  margin-top: 25px;
  display: flex;
  gap: 12px;
}

.recommended-cta button {
  padding: 12px 18px;
  border-radius: 999px;
  border: none;
  font-weight: 700;
  cursor: pointer;
  background: #ffd36e;
  color: #000;
}

.recommended-cta .secondary {
  background: transparent;
  border: 1px solid #334155;
  color: white;
}

/* TESTIMONIAL CARDS */
.recommended-cards {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.review-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 20px;
  border-radius: 16px;
  transition: 0.35s;
}

.review-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 211, 110, 0.4);
}

.review-card p {
  color: #e5e7eb;
  line-height: 1.6;
  font-size: 14px;
}

.review-card strong {
  display: block;
  margin-top: 10px;
  color: #ffd36e;
}

.review-card.highlight {
  background: rgba(255, 211, 110, 0.06);
  border-color: rgba(255, 211, 110, 0.2);
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .recommended-inner {
    grid-template-columns: 1fr;
  }

  .recommended-stats {
    grid-template-columns: 1fr;
  }
}

.testimonials {
  padding: 110px 8%;
  background: #f7faf8;
}

.testimonials-inner {
  max-width: 1200px;
  margin: auto;
  text-align: center;
}

/* HEADER */
.testimonials-header .badge {
  display: inline-block;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(22, 163, 74, 0.1);
  color: #16a34a;
  font-weight: 600;
  font-size: 12px;
}

.testimonials-header h2 {
  font-size: 2.6rem;
  margin-top: 14px;
  color: #16a34a;
}

.testimonials-header p {
  margin-top: 10px;
  color: #667085;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* GRID */
.testimonials-grid {
  margin-top: 50px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

/* CARD */
.testimonial-card {
  background: white;
  border: 1px solid #e6e8ec;
  padding: 26px;
  border-radius: 18px;
  text-align: left;
  position: relative;
  transition: 0.35s ease;
}

/* hover */
.testimonial-card:hover {
  transform: translateY(-8px);
  border-color: #16a34a;
}

/* quote symbol */
.quote {
  font-size: 40px;
  color: #16a34a;
  line-height: 1;
}

/* text */
.testimonial-card p {
  margin-top: 10px;
  color: #374151;
  line-height: 1.6;
  font-size: 14px;
}

/* client info */
.client {
  margin-top: 18px;
}

.client strong {
  display: block;
  color: #0b1220;
}

.client span {
  font-size: 12px;
  color: #667085;
}

/* highlight card */
.testimonial-card.highlight {
  background: #022f0b;
  border: none;
  color: white;
}

.testimonial-card.highlight p {
  color: #cbd5e1;
}

.testimonial-card.highlight .client strong {
  color: #ffd36e;
}

/* RESPONSIVE */
@media (max-width: 1000px) {
  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 650px) {
  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .testimonials-header h2 {
    font-size: 2rem;
  }
}

.footer {
  background: rgba(19, 114, 7, 0.3);
  color: white;
  padding: 80px 8% 30px;
}

/* TOP GRID */
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 50px;
  max-width: 1200px;
  margin: auto;
}

/* BRAND */
.footer-brand h2 {
  color: white;
  font-size: 2rem;
  letter-spacing: -0.5px;
}

.footer-brand p {
  margin-top: 12px;
  color: #94a3b8;
  line-height: 1.6;
  max-width: 320px;
}

/* CTA BUTTONS */
.footer-cta {
  margin-top: 20px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.footer-cta button {
  padding: 10px 16px;
  border-radius: 999px;
  border: none;
  background: #ffd36e;
  font-weight: 700;
  cursor: pointer;
}

.footer-cta .ghost {
  background: transparent;
  border: 1px solid #334155;
  color: white;
}

/* COLUMNS */
.footer-col h4 {
  color: #ffd36e;
  font-size: 13px;
  letter-spacing: 1px;
  margin-bottom: 14px;
}

.footer-col a {
  display: block;
  color: #94a3b8;
  text-decoration: none;
  margin-bottom: 10px;
  font-size: 14px;
  transition: 0.3s;
}

.footer-col a:hover {
  color: #ffd36e;
  transform: translateX(4px);
}

.footer-col p {
  color: #94a3b8;
  font-size: 14px;
  margin-bottom: 8px;
}

/* TRUST STRIP */
.footer-trust {
  margin-top: 60px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  padding: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  color: #cbd5e1;
  font-size: 13px;
}

/* BOTTOM */
.footer-bottom {
  margin-top: 25px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  color: #64748b;
  font-size: 13px;
}

.footer-links-inline {
  display: flex;
  gap: 15px;
}

.footer-links-inline a {
  color: #94a3b8;
  text-decoration: none;
}

.footer-links-inline a:hover {
  color: #ffd36e;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .footer-top {
    grid-template-columns: 1fr 1fr;
  }

  .footer-trust {
    justify-content: center;
    text-align: center;
  }
}

@media (max-width: 600px) {
  .footer-top {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    justify-content: center;
    text-align: center;
  }
}

/* ABOUT US PAGE */

.links a {
  text-decoration: none;
  color: white;
  font-weight: 500;
  transition: 0.3s;
}

.links a:hover {
  color: var(--yellow);
}

.menu {
  display: none;
  font-size: 26px;
  cursor: pointer;
  color: white;
}

@media (max-width: 768px) {
  .menu {
    display: block;
  }
  .links {
    display: none;
    position: absolute;
    top: 65px;
    right: 8%;
    background: #111;
    padding: 14px;
    border-radius: 14px;
    border: 1px solid #222;
    flex-direction: column;
  }
  .links.active {
    display: flex;
  }
}

/* HERO (ABOUT HEADER) */
/* 
.badge {
  display: inline-block;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(22, 163, 74, 0.2);
  color: var(--green);
  font-weight: 600;
  font-size: 12px;
}

.hero-inner h1 {
  font-size: 3rem;
  margin-top: 12px;
}

.hero-inner h1 span {
  color: var(--yellow);
}

.hero-inner p {
  margin-top: 15px;
  color: #cbd5e1;
  max-width: 600px;
}

/* ABOUT SECTION */
.about {
  padding: 110px 8%;
  background: #f7faf8;
  color: #0b1220;
}

.about-inner {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-media img {
  width: 100%;
  border-radius: 20px;
}

.about-content h2 {
  font-size: 2.4rem;
  color: var(--green);
  margin-bottom: 12px;
}

.about-content p {
  color: #667085;
  line-height: 1.6;
  margin-bottom: 20px;
}

.about-points {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}

.point {
  background: white;
  padding: 14px;
  border-radius: 14px;
  border: 1px solid #e6e8ec;
}

/* MISSION */
.mission {
  padding: 110px 8%;
  background: #fff;
  color: #0b1220;
  text-align: center;
}

.mission h2 {
  font-size: 2.4rem;
  color: var(--green);
}

.mission p {
  max-width: 700px;
  margin: 20px auto;
  color: #667085;
  line-height: 1.7;
}

/* VALUES */
.values {
  padding: 110px 8%;
  background: #f7faf8;
  color: #0b1220;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 40px;
}

.value-card {
  background: white;
  padding: 25px;
  border-radius: 16px;
  border: 1px solid #e6e8ec;
}

.value-card h3 {
  color: var(--green);
  margin-bottom: 10px;
}

/* FOOTER */
.footer {
  background: rgba(19, 114, 7, 0.3);
  color: white;
  padding: 80px 8% 30px;
  text-align: center;
}

@media (max-width: 900px) {
  .about-inner {
    grid-template-columns: 1fr;
  }
  .values-grid {
    grid-template-columns: 1fr;
  }
}

/* SERVICES PAGE */

:root {
  --green: #16a34a;
  --yellow: #ffd36e;
  --dark: #0b1220;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Inter", sans-serif;
  scroll-behavior: smooth;
}

body {
  background: #000;
  color: white;
}

/* NAV */
header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 999;
  background: rgba(19, 114, 7, 0.3);
  backdrop-filter: blur(12px);
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 8%;
}

.logo {
  font-weight: 900;
}

.links {
  display: flex;
  gap: 20px;
}

.links a {
  text-decoration: none;
  color: white;
}

.links a:hover {
  color: var(--yellow);
}

.menu {
  display: none;
  font-size: 26px;
  cursor: pointer;
}

@media (max-width: 768px) {
  .menu {
    display: block;
  }
  .links {
    display: none;
    position: absolute;
    top: 65px;
    right: 8%;
    background: #111;
    padding: 14px;
    border-radius: 14px;
    flex-direction: column;
  }
  .links.active {
    display: flex;
  }
}

/* SERVICES GRID */
.services {
  padding: 110px 8%;
  background: #f7faf8;
  color: #0b1220;
}

.section-title {
  text-align: center;
  max-width: 700px;
  margin: auto;
}

.section-title h2 {
  font-size: 2.6rem;
  color: var(--green);
}

.section-title p {
  margin-top: 12px;
  color: #667085;
}

.grid {
  margin-top: 50px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.card {
  background: white;
  border: 1px solid #e6e8ec;
  border-radius: 18px;
  padding: 26px;
  transition: 0.3s;
  position: relative;
  overflow: hidden;
}

.card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at top left,
    rgba(22, 163, 74, 0.12),
    transparent 60%
  );
  opacity: 0;
  transition: 0.3s;
}

.card:hover {
  transform: translateY(-8px);
  border-color: var(--green);
}

.card:hover::before {
  opacity: 1;
}

.icon {
  font-size: 28px;
  margin-bottom: 12px;
}

.card h3 {
  color: var(--dark);
  margin-bottom: 10px;
}

.card p {
  color: #667085;
  font-size: 14px;
  line-height: 1.6;
}

/* FEATURE STRIP */
.feature {
  padding: 100px 8%;
  background: #000;
  color: white;
}

.feature-inner {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 50px;
  align-items: center;
}

.feature h2 {
  font-size: 2.5rem;
}

.feature h2 span {
  color: var(--yellow);
}

.feature p {
  margin-top: 15px;
  color: #cbd5e1;
  line-height: 1.6;
}

.stats {
  margin-top: 20px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
}

.stat {
  background: rgba(255, 255, 255, 0.05);
  padding: 16px;
  border-radius: 14px;
  text-align: center;
}

.stat strong {
  color: var(--yellow);
  font-size: 1.4rem;
}

/* CTA */
.cta {
  padding: 100px 8%;
  background: rgba(19, 114, 7, 0.3);
  text-align: center;
}

.cta h2 {
  font-size: 2.4rem;
}

.cta p {
  margin-top: 12px;
  color: #cbd5e1;
}

.cta button {
  margin-top: 20px;
  padding: 12px 20px;
  border: none;
  border-radius: 999px;
  font-weight: 700;
  background: var(--yellow);
  cursor: pointer;
}

/* FOOTER */
footer {
  background: #000;
  padding: 40px 8%;
  text-align: center;
  color: #94a3b8;
}

/* RESPONSIVE */
@media (max-width: 1000px) {
  .grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .feature-inner {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 650px) {
  .grid {
    grid-template-columns: 1fr;
  }

  .hero-content h1 {
    font-size: 2.2rem;
  }
}

/* PROJECT PAGES */

:root {
  --green: #16a34a;
  --yellow: #ffd36e;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Inter", sans-serif;
}

body {
  background: #000;
  color: white;
}

/* NAV */
header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 999;
  background: rgba(19, 114, 7, 0.3);
  backdrop-filter: blur(12px);
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 8%;
}

.logo {
  font-weight: 900;
  color: white;
}

.links {
  display: flex;
  gap: 20px;
}

.links a {
  text-decoration: none;
  color: white;
}

.links a:hover {
  color: var(--yellow);
}

.menu {
  display: none;
  font-size: 26px;
  cursor: pointer;
}

@media (max-width: 768px) {
  .menu {
    display: block;
  }
  .links {
    display: none;
    position: absolute;
    top: 65px;
    right: 8%;
    background: #111;
    padding: 14px;
    border-radius: 14px;
    flex-direction: column;
  }
  .links.active {
    display: flex;
  }
}

/* PROJECT GRID */
.projects {
  padding: 110px 8%;
  background: #f7faf8;
  color: #0b1220;
}

.section-title {
  text-align: center;
  max-width: 700px;
  margin: auto;
}

.section-title h2 {
  font-size: 2.6rem;
  color: var(--green);
}

.section-title p {
  margin-top: 12px;
  color: #667085;
}

.grid {
  margin-top: 50px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

/* CARD */
.card {
  background: white;
  border: 1px solid #e6e8ec;
  border-radius: 18px;
  overflow: hidden;
  transition: 0.3s;
}

.card:hover {
  transform: translateY(-8px);
  border-color: var(--green);
}

.card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.card-body {
  padding: 20px;
}

.card-body h3 {
  color: #0b1220;
  margin-bottom: 8px;
}

.card-body p {
  color: #667085;
  font-size: 14px;
  line-height: 1.6;
}

.tag {
  display: inline-block;
  margin-top: 10px;
  padding: 5px 10px;
  font-size: 12px;
  border-radius: 999px;
  background: rgba(22, 163, 74, 0.1);
  color: var(--green);
}

/* STATS SECTION */
.stats {
  padding: 100px 8%;
  background: #000;
  color: white;
  text-align: center;
}

.stats h2 {
  font-size: 2.4rem;
}

.stats h2 span {
  color: var(--yellow);
}

.stats-grid {
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
}

.stat {
  background: rgba(255, 255, 255, 0.05);
  padding: 20px;
  border-radius: 14px;
}

.stat strong {
  color: var(--yellow);
  font-size: 1.6rem;
}

/* CTA */
.cta {
  padding: 100px 8%;
  background: rgba(19, 114, 7, 0.3);
  text-align: center;
}

.cta h2 {
  font-size: 2.4rem;
}

.cta p {
  margin-top: 10px;
  color: #cbd5e1;
}

.cta button {
  margin-top: 20px;
  padding: 12px 20px;
  border: none;
  border-radius: 999px;
  background: var(--yellow);
  font-weight: 700;
  cursor: pointer;
}

/* FOOTER */
footer {
  padding: 40px 8%;
  text-align: center;
  background: #000;
  color: #94a3b8;
}

/* RESPONSIVE */
@media (max-width: 1000px) {
  .grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 650px) {
  .grid {
    grid-template-columns: 1fr;
  }

  .stats-grid {
    grid-template-columns: 1fr;
  }

  .hero-content h1 {
    font-size: 2.2rem;
  }
}

/* CONTACT PAGE */

/* NAV */
header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 999;
  background: rgba(19, 114, 7, 0.3);
  backdrop-filter: blur(12px);
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 8%;
}

.logo {
  font-weight: 900;
  color: white;
}

.links {
  display: flex;
  gap: 20px;
}

.links a {
  text-decoration: none;
  color: white;
}

.links a:hover {
  color: var(--yellow);
}

.menu {
  display: none;
  font-size: 26px;
  cursor: pointer;
}

@media (max-width: 768px) {
  .menu {
    display: block;
  }
  .links {
    display: none;
    position: absolute;
    top: 65px;
    right: 8%;
    background: #111;
    padding: 14px;
    border-radius: 14px;
    flex-direction: column;
  }
  .links.active {
    display: flex;
  }
}

/* CONTACT SECTION */
.contact {
  padding: 110px 8%;
  background: #f7faf8;
  color: #0b1220;
}

.contact-inner {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

/* FORM */
form {
  background: white;
  padding: 30px;
  border-radius: 18px;
  border: 1px solid #e6e8ec;
}

form h2 {
  color: var(--green);
  margin-bottom: 20px;
}

input,
textarea {
  width: 100%;
  padding: 12px;
  margin-bottom: 12px;
  border-radius: 10px;
  border: 1px solid #ddd;
  outline: none;
  font-size: 14px;
}

textarea {
  height: 120px;
  resize: none;
}

button {
  width: 100%;
  padding: 12px;
  border: none;
  border-radius: 999px;
  background: var(--yellow);
  font-weight: 700;
  cursor: pointer;
  transition: 0.3s;
}

button:hover {
  transform: translateY(-2px);
}

/* INFO CARD */
.info {
  background: #000;
  color: white;
  padding: 30px;
  border-radius: 18px;
}

.info h2 {
  color: var(--yellow);
  margin-bottom: 15px;
}

.info p {
  color: #cbd5e1;
  line-height: 1.6;
  margin-bottom: 15px;
}

.info-box {
  margin-top: 20px;
  background: rgba(255, 255, 255, 0.05);
  padding: 16px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.info-box strong {
  display: block;
  color: var(--yellow);
  margin-bottom: 5px;
}

/* MAP SECTION */
.map {
  margin-top: 80px;
}

.map iframe {
  width: 100%;
  height: 350px;
  border: 0;
  border-radius: 16px;
}

/* CTA */
.cta {
  padding: 100px 8%;
  background: rgba(19, 114, 7, 0.3);
  text-align: center;
}

.cta h2 {
  font-size: 2.4rem;
}

.cta p {
  margin-top: 10px;
  color: #cbd5e1;
}

.cta button {
  margin-top: 20px;
  padding: 12px 20px;
  border: none;
  border-radius: 999px;
  background: var(--yellow);
  font-weight: 700;
  cursor: pointer;
}

/* FOOTER */
footer {
  padding: 40px 8%;
  text-align: center;
  background: #000;
  color: #94a3b8;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .contact-inner {
    grid-template-columns: 1fr;
  }

  .hero-content h1 {
    font-size: 2.2rem;
  }
}

/* DROPDOWN NAVIGATION */

/* Dropdown */
.dropdown {
  position: relative;
  display: inline-block;
}

.dropbtn {
  text-decoration: none;
}

.dropdown-content {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 200px;
  background: #fff;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
  z-index: 1000;
}

.dropdown-content a {
  display: block;
  padding: 12px 16px;
  color: #333;
  text-decoration: none;
}

.dropdown-content a:hover {
  background: #f5f5f5;
}

/* Show dropdown on hover */
.dropdown:hover .dropdown-content {
  display: block;
}

/* Mobile Menu */

.show {
  display: block;
}
