:root {
  --brand-green: #275d2b;
  --brand-green-light: #dbf4d7;
  --text-muted: #5f6e66;
  --black: #2b2b2e;
  --white: #fff;
  --bs-body-font-family: "Inter", sans-serif;
}
body {
  color: #101828;
}
a {
  text-decoration: none;
}
.text-muted-custom {
  color: var(--text-muted);
}
.line-clamp-2 {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.btn-flat,
.btn-flat-white {
  font-weight: 500;
  color: var(--brand-green);
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 5px 0;
  font-size: 0.875em;
}
.btn-flat-white {
  color: var(--white);
}
.btn-flat svg,
.btn-flat-white svg {
  background-color: var(--brand-green);
  width: 30px;
  height: 30px;
  padding: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}
.btn-flat-white svg {
  background-color: var(--white);
}
.btn-flat-white svg path {
  stroke: var(--brand-green);
}
/* Brand color utility overrides */
.text-brand {
  color: var(--brand-green) !important;
}
.bg-brand {
  background-color: var(--brand-green) !important;
}
.bg-brand-light {
  background-color: var(--brand-green-light) !important;
}
.border-brand {
  border-color: var(--brand-green) !important;
}

.btn-brand {
  background-color: var(--brand-green);
  color: #fff;
  border-radius: 8px;
  padding: 0.6rem 0.7rem;
  font-weight: 500;
  border: none;
  display: flex;
  align-items: center;
  gap: 6px;
  width: fit-content;
}
.btn-brand:hover {
  background-color: #1e4a22;
  color: #fff;
}
.btn-brand-outline {
  background: #fff;
  color: var(--brand-green);
  border: 1.5px solid var(--brand-green);
  border-radius: 25px;
  padding: 0.6rem 1.5rem;
  font-weight: 500;
}
.btn-brand-outline:hover {
  background: var(--brand-green-light);
  color: var(--brand-green);
}

.eyebrow {
  display: inline-flex;
  padding: 0.35rem 1rem;
  border-radius: 20px;
  color: var(--brand-green);
  background-color: var(--brand-green-light);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
.heading-section {
  font-size: 2.75rem;
  font-weight: 600;
}
.heading-section span {
  color: var(--brand-green);
}
.icon-circle-step {
  width: 78px;
  height: 78px;
  border-radius: 50%;
  background-color: var(--white);
  box-shadow: 0px 10px 20px rgba(31, 111, 67, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: -40px;
}
.icon-circle {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--brand-green-light);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.icon-circle svg {
  width: 24px;
  height: 24px;
  stroke: var(--brand-green);
}
.icon-circle.icon-lg {
  width: 66px;
  height: 66px;
}
.icon-circle.icon-lg svg {
  width: 32px;
  height: 32px;
}
.icon-circle.icon-xl {
  width: 78px;
  height: 78px;
}
.icon-circle.icon-xl svg {
  width: 36px;
  height: 36px;
}

/* ---------- Navbar ---------- */
.navbar-brand img {
  height: 50px;
}
.nav-link {
  font-weight: 400;
  color: #101828 !important;
}
.nav-link.active {
  color: var(--brand-green) !important;
  font-weight: 500;
  border-bottom: 2px solid var(--brand-green);
}
.main-nav {
  display: flex;
  align-items: center;
}

/* ---------- Hero ---------- */
.hero h1 {
  font-size: 5.875rem;
  font-weight: 700;
  line-height: 1.15;
}
.hero-img {
  filter: drop-shadow(0px 0px 130px rgba(24, 140, 74, 0.25));
}
.hero h1 span {
  color: var(--brand-green);
}
.hero-illustration {
  max-width: 460px;
  width: 100%;
}
.tech-badge {
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  text-align: center;
}
.tech-badge .badge-circle {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
}
.tech-badge span {
  font-size: 0.7rem;
  font-weight: 600;
}
.tech-badge.pos-1 {
  top: 0%;
  left: 6%;
}
.tech-badge.pos-2 {
  top: 4%;
  right: 0%;
}
.tech-badge.pos-3 {
  top: 36%;
  left: -6%;
}
.tech-badge.pos-4 {
  top: 38%;
  right: -8%;
}
.tech-badge.pos-5 {
  bottom: 6%;
  left: 0%;
}
.tech-badge.pos-6 {
  bottom: 0%;
  right: 4%;
}

.stat-number {
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  font-size: 1rem;
  display: block;
}
.stat-label {
  font-family: "Montserrat", sans-serif;
  font-size: 0.65rem;
  color: var(--text-muted);
}
.card {
  background: #ffffff;
  border: 1px solid #e7f3ec;
  box-shadow: 0px 10px 35px rgba(31, 111, 67, 0.08);
  border-radius: 10px;
  padding: 1rem;
}
/* ---------- About ---------- */
.about-us {
  background-color: #f3f5f3;
}
.about-card {
  padding: 1rem;
  background-image: url(../assets/svg/ic_dots_bg.svg);
  background-position: left top;
  background-repeat: no-repeat;
}
.about-card h3 {
  font-size: 1.44rem;
  font-weight: 600;
  color: var(--black);
}
.about-card h3 span {
  color: var(--brand-green);
}
.about-photo {
  border-radius: 16px;
  object-fit: cover;
  width: 100%;
  min-height: 300px;
}

/* ---------- Web dev / tech cards ---------- */
.check-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.9rem;
}
.check-item .dot {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--brand-green-light);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.check-item svg {
  width: 14px;
  height: 14px;
  stroke: var(--brand-green);
}
.webdev-image {
  border-radius: 16px;
  width: 100%;
  min-height: 320px;
  object-fit: cover;
}

.tech-card {
  height: 100%;
}
.tech-card h4 {
  font-size: 1.25rem;
  color: var(--black);
  font-weight: 500;
}
.tech-card p {
  font-size: 0.875rem;
  color: var(--text-muted);
}
.arrow-circle {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--brand-green-light);
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  right: 16px;
  bottom: 16px;
}
.arrow-circle svg {
  width: 16px;
  height: 16px;
  stroke: var(--brand-green);
}

/* ---------- Years banner ---------- */
.years-banner {
  background:
    linear-gradient(
      90deg,
      #0f3d22 0%,
      #14532d 20%,
      #1f6f43 45%,
      #2e8b57 70%,
      #3faf68 100%
    ),
    radial-gradient(
      50% 50% at 50% 50%,
      rgba(126, 223, 166, 0.1) 0%,
      rgba(102, 102, 102, 0) 35%
    ),
    radial-gradient(
      50% 50% at 50% 50%,
      rgba(74, 222, 128, 0.18) 0%,
      rgba(153, 153, 153, 0) 30%
    );
  border-radius: 20px;
  height: 219px;
  color: var(--white);
  padding-top: 30px;
  padding-left: 30px;
}
.years-banner h2 {
  font-size: 2.5rem;
  font-weight: 600;
}
.rocket-bg {
  height: 100%;
}

/* ---------- Process ---------- */
.process-step {
  flex: 1;
  position: relative;
  padding-top: 53px;
}
.process-step::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 1px;
  transform: translateX(-50%);
  width: 53px;
  height: 13px;
  background: url(../assets/svg/ic_process_after.svg);
}
.process-deliver {
  margin-top: 4rem;
}
.process-step h4 {
  font-size: 1.5rem;
  color: var(--brand-green);
  font-weight: 600;
}
.process-step h4::after {
  content: "";
  display: block;
  width: 40px;
  margin: 0 auto;
  margin-top: 5px;
  height: 2px;
  background: var(--brand-green);
}
.process-step p {
  font-size: 0.85rem;
  color: var(--text-muted);
}
.delivery-block {
  background:
    linear-gradient(90deg, #f7fffa 0%, #ecfdf5 45%, #f4fdf8 100%),
    linear-gradient(
      90deg,
      rgba(167, 243, 208, 0.12) 0%,
      rgba(102, 102, 102, 0) 45%
    ),
    radial-gradient(
      50% 50% at 50% 50%,
      rgba(126, 223, 166, 0.1) 0%,
      rgba(102, 102, 102, 0) 35%
    ),
    radial-gradient(
      50% 50% at 50% 50%,
      rgba(74, 222, 128, 0.1) 0%,
      rgba(115, 115, 115, 0) 40%
    );
  border: 1px solid #e8f3ec;
  border-radius: 30px;
  padding: 35px;
}
.delivery-block--stat-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.delivery-block-row {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1.4fr;
  gap: 1.5rem;
}
.delivery-block h3 {
  font-size: 2.125rem;
  color: var(--black);
  font-weight: 600;
}
.delivery-block h3 span {
  color: var(--brand-green);
}
.stat-card .stat-num {
  font-size: 1.4rem;
  font-weight: 700;
  display: block;
}
.stat-card .stat-desc {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* ---------- Knowledge / blog ---------- */
.blog-thumb {
  background: linear-gradient(135deg, #e9f7ea, #c8e6c9);
  border-radius: 12px;
  width: 100%;
  height: 100%;
  min-height: 180px;
}
.blog-card {
  border: 1px solid #e5e7eb;
  border-radius: 16px;
}
.blog-card h3 {
  font-weight: 600;
  color: var(--black);
}
.blog-card h4 {
  font-size: 18px;
  font-weight: 600;
  color: var(--black);
}
.blog-tag {
  color: var(--brand-green);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
}
.topic-row {
  border-radius: 12px;
  border: 1px solid #f3f1f0;
  padding: 0.625rem;
}

.topic-row > div {
  min-width: 0;
}

.topic-row .fw-medium {
  overflow-wrap: anywhere;
  word-break: break-word;
  line-height: 1.2;
}
.fs-12 {
  font-size: 12px;
}
.topic-row:hover {
  background: var(--brand-green-light);
}

/* ---------- Career ---------- */
.career-visual {
  background: linear-gradient(135deg, #e9f7ea, #c8e6c9);
  border-radius: 16px;
  min-height: 340px;
}
.career-photo {
  border-radius: 16px;
  width: 100%;
  min-height: 260px;
  object-fit: cover;
}
.career-feature h4 {
  font-size: 1rem;
  font-weight: 700;
}
.career-feature p {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* ---------- Footer ---------- */
.site-footer {
  background-color: #011d16;
  background-image: url(../assets/img/ic_footer_earth.png);
  background-position: left bottom;
  background-size: contain;
  background-repeat: no-repeat;
  color: var(--white);
}



.site-footer-row {
  display: grid;
  /* grid-template-columns: 1fr 1fr; */
  color: var(--white);
  grid-template-columns: 219px 1.6fr 1fr 1.4fr;
  gap: 3.438rem;
}
.footer-col h4 {
  font-size: 1.125rem;
  color: var(--white);
  font-weight: 600;
}
.footer-col a {
  color: var(--white);
  font-size: 0.85rem;
  line-height: 40px;
  display: block;
}
.footer-col a:hover {
  color: var(--white);
  opacity: 0.7;
}
.footer-services {
  columns: 2;
  column-gap: 2.5rem;
}

.footer-services li {
  break-inside: avoid;
  white-space: nowrap;
}

/* ---------- Custom mobile hamburger navbar ---------- */
.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.menu-toggle svg {
  width: 28px;
  height: 28px;
  stroke: #101828;
}
.nav-close {
  display: none;
}
.nav-overlay {
  display: none;
}

@media (max-width: 900px) {
  .menu-toggle {
    display: block;
  }
  .main-nav {
    position: fixed;
    inset: 0 0 0 auto;
    width: min(320px, 80vw);
    height: 100vh;
    background: #fff;
    box-shadow: -8px 0 24px rgba(0, 0, 0, 0.1);
    transform: translateX(100%);
    transition: transform 0.3s ease;
    z-index: 1050;
    padding: 24px;
    overflow-y: auto;
  }
  .main-nav.open {
    transform: translateX(0);
  }
  .main-nav .navbar-nav {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    margin-top: 48px;
    width: 100%;
  }
  .main-nav .nav-link {
    display: block;
    padding: 12px 8px;
    width: 100%;
  }
  .main-nav .nav-link.active {
    border-bottom: none;
    background: var(--brand-green-light);
    border-radius: 8px;
  }
  .main-nav .btn-brand {
    width: 100%;
    justify-content: center;
    margin-top: 8px;
  }
  .nav-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1049;
  }
  .nav-overlay.open {
    display: block;
  }
  .nav-close {
    display: block;
    margin-left: auto;
    background: none;
    border: none;
    cursor: pointer;
  }
  .nav-close svg {
    width: 24px;
    height: 24px;
  }
}
@media (max-width: 768px) {
  .delivery-block-row,
  .delivery-block--stat-row, .site-footer-row {
    grid-template-columns: 1fr;
  }
  .process-step {
    flex: auto;
    margin-bottom: 35px;
  }
  .years-banner{
    height: auto;
  }
  .delivery-block{
    padding: 25px;
  }
  .years-banner{
    padding: 30px 25px 0;
  }
  .hero h1{
        font-size: 3.47rem;
  }
  .heading-section{
        font-size: 2rem;
  }
  .years-banner h2{
    font-size: 1.7rem;
  }
  .delivery-block h3{
    font-size: 1.5rem;
  }
}











/* ---------- Years of Effective Delivery ---------- */

.years-banner {
  background:
    linear-gradient(
      90deg,
      #0f3d22 0%,
      #14532d 20%,
      #1f6f43 45%,
      #2e8b57 70%,
      #3faf68 100%
    ),
    radial-gradient(
      50% 50% at 50% 50%,
      rgba(126, 223, 166, 0.1) 0%,
      rgba(102, 102, 102, 0) 35%
    ),
    radial-gradient(
      50% 50% at 50% 50%,
      rgba(74, 222, 128, 0.18) 0%,
      rgba(153, 153, 153, 0) 30%
    );

  border-radius: 20px;
  height: 219px;
  color: var(--white);
  padding-top: 30px;
  padding-left: 30px;
}

.years-banner h2 {
  font-size: 2.5rem;
  font-weight: 600;
}

.rocket-bg {
  height: 100%;
}


/* ---------- Delivery Excellence ---------- */

.delivery-block {
  background:
    linear-gradient(
      90deg,
      #f7fffa 0%,
      #ecfdf5 45%,
      #f4fdf8 100%
    ),
    linear-gradient(
      90deg,
      rgba(167, 243, 208, 0.12) 0%,
      rgba(102, 102, 102, 0) 45%
    ),
    radial-gradient(
      50% 50% at 50% 50%,
      rgba(126, 223, 166, 0.1) 0%,
      rgba(102, 102, 102, 0) 35%
    ),
    radial-gradient(
      50% 50% at 50% 50%,
      rgba(74, 222, 128, 0.1) 0%,
      rgba(115, 115, 115, 0) 40%
    );

  border: 1px solid #e8f3ec;
  border-radius: 30px;
  padding: 35px;
}

.delivery-block--stat-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.delivery-block-row {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1.4fr;
  gap: 1.5rem;
}

.delivery-block h3 {
  font-size: 2.125rem;
  color: var(--black);
  font-weight: 600;
}

.delivery-block h3 span {
  color: var(--brand-green);
}

.stat-card .stat-num {
  font-size: 1.4rem;
  font-weight: 700;
  display: block;
}

.stat-card .stat-desc {
  font-size: 0.8rem;
  color: var(--text-muted);
}




.delivery-excellence-block h3 span {
    color: var(--brand-green);
}

.heading-section span {
    color: var(--brand-green);
}