#scroll-top,
.gear {
  width: 48px;
  height: 48px;
}
#preloader.hidden,
#scroll-top {
  visibility: hidden;
  opacity: 0;
}
.nav-toggle span,
body {
  background: var(--white);
}
body,
html,
img {
  max-width: 100%;
}
#scroll-top,
.btn,
.nav-toggle {
  cursor: pointer;
}
.footer-links,
ul {
  list-style: none;
}
.footer-links a,
a {
  text-decoration: none;
}
.about-img,
.blog-img,
.project-img,
.related-img {
  object-fit: cover;
}
:root {
  --navy: #0a1628;
  --navy-mid: #0f2144;
  --navy-light: #162d54;
  --steel: #3a4a5c;
  --steel-light: #6b7f94;
  --accent: #6b7f94;
  --orange: #e8700a;
  --orange-light: #f5893a;
  --yellow: #f5b800;
  --white: #ffffff;
  --off-white: #f4f6f9;
  --light-grey: #e8ecf0;
  --mid-grey: #c4cdd6;
  --text-body: #3a4a5c;
  --text-light: #7a8fa6;
  --shadow: 0 10px 30px -10px rgba(0, 45, 76, 0.1);
  --font-display: "Barlow Condensed", sans-serif;
  --font-body: "Barlow", sans-serif;
  --shadow-sm: 0 2px 12px rgba(10, 22, 40, 0.1);
  --shadow-md: 0 6px 32px rgba(10, 22, 40, 0.16);
  --shadow-lg: 0 16px 60px rgba(10, 22, 40, 0.22);
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --radius: 30px;
}
*,
::after,
::before {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
  font-size: 16px;
}
body {
  font-family: var(--font-body);
  color: var(--text-body);
  line-height: 1.65;
}
.nav-links a,
.nav-logo,
.preloader-logo,
.section-tag,
h1,
h2,
h3,
h4 {
  font-family: var(--font-display);
}
a {
  color: inherit;
}
h1,
h2,
h3,
h4 {
  line-height: 1.15;
  letter-spacing: 0.02em;
}
#preloader {
  position: fixed;
  inset: 0;
  background: var(--navy);
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: opacity 0.6s, visibility 0.6s;
}
.preloader-logo {
  font-size: 2rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: 0.1em;
  margin-bottom: 2rem;
}
.cta-title .accent,
.footer-brand span,
.hero-title .accent,
.nav-logo span,
.preloader-logo span {
  color: var(--orange);
}
#scroll-top,
.footer-bottom-links a:hover,
.footer-links a:hover,
.nav-links a:hover,
.nav-logo,
.section-heading.light {
  color: var(--white);
}
.gear-wrap {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 1.5rem;
}
#scroll-top,
.nav-container {
  align-items: center;
  display: flex;
}
.gear {
  border: 4px solid var(--orange);
  border-radius: 50%;
  position: relative;
  animation: 1.8s linear infinite spin;
}
.gear::after,
.gear::before {
  border-radius: 50%;
  position: absolute;
  background: var(--orange);
  content: "";
}
.gear::before {
  inset: 4px;
  opacity: 0.15;
}
.gear::after {
  top: 50%;
  left: 50%;
  width: 6px;
  height: 6px;
  transform: translate(-50%, -50%);
}
.gear-sm {
  width: 32px;
  height: 32px;
  border: 3px solid var(--steel-light);
  animation: 1.2s linear infinite reverse spin;
}
@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
.preloader-bar {
  width: 200px;
  height: 3px;
  background: var(--navy-light);
  border-radius: 2px;
  overflow: hidden;
}
.preloader-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--orange), var(--yellow));
  border-radius: 2px;
  animation: 2s ease-in-out forwards load;
}
@keyframes load {
  0% {
    width: 0;
  }
  100% {
    width: 100%;
  }
}
#scroll-top {
  position: fixed;
  bottom: 32px;
  right: 32px;
  background: var(--orange);
  border: none;
  border-radius: 30px;
  justify-content: center;
  font-size: 1.1rem;
  transform: translateY(12px);
  transition: var(--transition);
  z-index: 500;
  box-shadow: 0 4px 20px rgba(232, 112, 10, 0.4);
}
#scroll-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
#scroll-top:hover {
  background: var(--orange-light);
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(232, 112, 10, 0.5);
}
#navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 900;
  padding: 1.25rem 0;
  transition: 0.4s;
}
#navbar.scrolled {
  background: rgba(10, 22, 40, 0.97);
  backdrop-filter: blur(10px);
  padding: 0.75rem 0;
  box-shadow: 0 2px 30px rgba(0, 0, 0, 0.3);
}
.nav-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
  justify-content: space-between;
}
.nav-logo {
  font-size: 1.6rem;
  font-weight: 800;
  letter-spacing: 0.06em;
}
.nav-logo sub {
  font-size: 0.55rem;
  font-weight: 600;
  color: var(--steel-light);
  letter-spacing: 0.2em;
  vertical-align: middle;
  margin-left: 2px;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.nav-links a {
  font-size: 0.95rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.82);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: color var(--transition);
  position: relative;
  padding-bottom: 4px;
}
.nav-links a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--orange);
  transition: width var(--transition);
}
.footer-bottom-links a:hover::after,
.footer-links a:hover::after,
.nav-links a:hover::after {
  width: 100%;
}
.nav-cta {
  background: var(--orange) !important;
  color: var(--white) !important;
  padding: 0.5rem 1.25rem !important;
  border-radius: 30px;
}
.nav-cta:hover {
  background: var(--orange-light) !important;
}
.nav-cta::after {
  display: none !important;
}
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: 0 0;
  border: none;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 26px;
  height: 2px;
  transition: var(--transition);
}
.nav-toggle.open span:first-child {
  transform: translateY(7px) rotate(45deg);
}
.nav-toggle.open span:nth-child(2) {
  opacity: 0;
}
.nav-toggle.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}
.btn,
.hero-badge {
  display: inline-flex;
  gap: 0.5rem;
  font-weight: 700;
}
img {
  display: block;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
}
.section-tag {
  text-transform: uppercase;
  color: var(--orange);
  border: 1px solid var(--orange);
  margin: auto auto 1rem;
}
.hero-badge,
.hero-title {
  font-family: var(--font-display);
  margin-bottom: 1.5rem;
}
.about-img-card-label,
.hero-stat-label {
  margin-top: 0.25rem;
  text-transform: uppercase;
}
body,
html {
  overflow-x: hidden;
}
.btn {
  align-items: center;
  font-family: var(--font-display);
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.85rem 2rem;
  border-radius: 3px;
  border: 2px solid transparent;
  transition: 0.3s;
}
.btn-outline,
.btn-primary {
  border-radius: 30px;
  color: var(--white);
}
.btn-primary {
  background: var(--orange);
  box-shadow: 0 4px 20px rgba(232, 112, 10, 0.35);
}
.about-img,
.about-img-card {
  box-shadow: var(--shadow-lg);
}
.btn-primary:hover {
  background: var(--orange-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(232, 112, 10, 0.45);
}
.btn-outline {
  background: 0 0;
  border-color: rgba(255, 255, 255, 0.5);
}
.btn-outline:hover {
  border-color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-2px);
}
.btn-outline-dark {
  background: 0 0;
  color: var(--navy);
  border-color: var(--navy);
}
.btn-outline-dark:hover {
  background: var(--navy);
  color: var(--white);
  transform: translateY(-2px);
}
section {
  padding: 6rem 0;
}
.divider {
  background: linear-gradient(90deg, var(--orange), var(--yellow));
  border-radius: 2px;
}
.divider.center {
  margin-left: auto;
  margin-right: auto;
}
#compliance-hero,
#hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
}
#compliance-hero.loaded .hero-bg,
#hero.loaded .hero-bg,
.footer-social:hover::before {
  transform: scale(1);
}
.hero-pattern {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(
      rgba(255, 255, 255, 0.025) 1px,
      transparent 1px
    ),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}
.hero-accent {
  position: absolute;
  left: 0;
  top: 0;
  width: 6px;
  height: 100%;
  background: linear-gradient(180deg, var(--orange) 0, var(--yellow) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 999px;
  padding-left: 3rem;
}
.hero-badge {
  align-items: center;
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--orange);
}
.hero-badge::before {
  content: "";
  display: block;
  width: 32px;
  height: 2px;
  background: var(--orange);
}
.hero-title {
  font-size: clamp(2.8rem, 6vw, 3.2rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.05;
  letter-spacing: 0.02em;
}
.hero-sub {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.7);
  max-width: 580px;
  line-height: 1.75;
  margin-bottom: 2.5rem;
}
.about-corner-badge-num,
.about-img-card-num,
.hero-stat-num {
  line-height: 1;
  font-family: var(--font-display);
}
.hero-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 3.5rem;
}
.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 2.5rem;
  padding-top: 2.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}
.hero-stat-num {
  font-size: 2rem;
  font-weight: 800;
  color: var(--orange);
}
.hero-stat-label {
  font-size: 0.75rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.55);
  letter-spacing: 0.1em;
}
.hero-scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255, 255, 255, 0.4);
  font-family: var(--font-display);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}
.hero-scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(180deg, var(--orange) 0, transparent 100%);
  animation: 2s ease-in-out infinite scrollDown;
}
#industries,
.about-img-card {
  background: var(--navy);
}
@keyframes scrollDown {
  0%,
  100% {
    opacity: 0.4;
    transform: scaleY(1);
  }
  50% {
    opacity: 1;
    transform: scaleY(1.2);
  }
}
#about,
#contact,
#projects {
  background: var(--off-white);
}
.about-grid,
.esg-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.about-img-wrap {
  position: relative;
}
.about-corner-badge,
.about-img-card {
  position: absolute;
  border-radius: var(--radius);
}
.about-img {
  width: 100%;
  height: 520px;
  border-radius: var(--radius);
}
.about-img-card {
  bottom: -2rem;
  right: -2rem;
  color: var(--white);
  padding: 1.75rem 2rem;
  min-width: 200px;
}
.about-img-card-num {
  font-size: 3rem;
  font-weight: 800;
  color: var(--orange);
}
.about-img-card-label {
  font-size: 0.8rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.6);
  letter-spacing: 0.1em;
}
.about-corner-badge {
  top: -1.5rem;
  left: -1.5rem;
  width: 100px;
  height: 100px;
  background: var(--orange);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
}
#services,
#testimonials,
.about-feature {
  background: var(--white);
}
.about-corner-badge-num {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--white);
}
.about-corner-badge-label {
  font-size: 0.55rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.8);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  text-align: center;
}
.about-features {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-top: 2rem;
}
.about-feature {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.25rem;
  border-radius: var(--radius);
  border-left: 3px solid var(--orange);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  border-radius: 30px;
}
.about-feature:hover {
  transform: translateX(4px);
  box-shadow: var(--shadow-md);
}
.about-feature-icon {
  width: 40px;
  height: 40px;
  min-width: 40px;
  background: rgba(232, 112, 10, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--orange);
  font-size: 0.95rem;
}
.about-feature-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--navy);
}
.about-feature-text {
  font-size: 0.88rem;
  color: var(--text-light);
  margin-top: 0.2rem;
}
.section-header .section-tag {
  display: block;
  text-align: center;
}
.section-header .section-sub {
  margin: 0 auto;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.agri-card,
.compliance-card,
.exp-card,
.pipeline-card,
.refining-card,
.service-card {
  background: var(--off-white);
  border-radius: var(--radius);
  padding: 2.25rem 2rem;
  border: 1px solid var(--light-grey);
  transition: 0.35s;
  cursor: default;
  position: relative;
  overflow: hidden;
}
.agri-card::before,
.compliance-card::before,
.exp-card::before,
.pipeline-card::before,
.refining-card::before,
.service-card::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--orange), var(--yellow));
  transform: scaleX(0);
  transition: transform 0.35s;
}
.agri-card:hover,
.compliance-card:hover,
.exp-card:hover,
.pipeline-card:hover,
.refining-card:hover,
.service-card:hover {
  background: var(--white);
  box-shadow: var(--shadow-lg);
  transform: translateY(-6px);
  border-color: transparent;
}
.agri-card:hover::before,
.compliance-card:hover::before,
.exp-card:hover::before,
.pipeline-card:hover::before,
.refining-card:hover::before,
.service-card:hover::before {
  transform: scaleX(1);
}
.agri-icon,
.compliance-icon,
.exp-icon,
.pipeline-icon,
.refining-icon,
.service-icon {
  width: 58px;
  height: 58px;
  background: rgba(232, 112, 10, 0.1);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--orange);
  margin-bottom: 1.25rem;
  transition: var(--transition);
}
.agri-card:hover .agri-icon,
.author-social a:hover,
.compliance-card:hover .compliance-icon,
.exp-card:hover .exp-icon,
.page-item.active,
.page-item:hover,
.pipeline-card:hover .pipeline-icon,
.refining-card:hover .refining-icon,
.service-card:hover .service-icon,
.share-btn:hover {
  background: var(--orange);
  color: var(--white);
}
.agri-title,
.compliance-title,
.exp-title,
.pipeline-title,
.refining-title,
.service-title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.75rem;
}
.agri-desc,
.compliance-desc,
.exp-desc,
.pipeline-desc,
.refining-desc,
.service-desc {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.7;
}
.service-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--orange);
  margin-top: 1.25rem;
  transition: gap var(--transition);
}
.blog-link:hover,
.service-link:hover {
  gap: 0.6rem;
}
.industries-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1rem;
}
.industry-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  padding: 2rem 1.25rem;
  text-align: center;
  transition: 0.35s;
  cursor: default;
}
.esg-metric,
.project-overlay,
.testi-card {
  transition: var(--transition);
}
.industry-card:hover {
  background: rgba(232, 112, 10, 0.1);
  border-color: var(--orange);
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(232, 112, 10, 0.2);
}
.industry-icon {
  font-size: 2.2rem;
  color: var(--orange);
  margin-bottom: 1rem;
  display: block;
}
.industry-title {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.3;
}
.projects-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
}
.project-overlay {
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
#esg {
  background: var(--navy-mid);
}
.esg-items {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-top: 2rem;
}
.esg-item {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
}
.esg-icon {
  width: 52px;
  height: 52px;
  min-width: 52px;
  background: rgba(232, 112, 10, 0.12);
  border: 1px solid rgba(232, 112, 10, 0.25);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: var(--orange);
}
.esg-item-title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.3rem;
}
.esg-item-text {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.7;
}
.esg-metrics {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}
.esg-metric {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  padding: 1.75rem;
  text-align: center;
}
.esg-metric:hover {
  background: rgba(232, 112, 10, 0.08);
  border-color: rgba(232, 112, 10, 0.3);
}
.esg-metric-num {
  font-family: var(--font-display);
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--orange);
  line-height: 1;
}
.esg-metric-label {
  font-size: 0.78rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.45);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-top: 0.5rem;
}
#cta {
  background: linear-gradient(
      135deg,
      rgba(10, 22, 40, 0.94) 0,
      rgba(15, 33, 68, 0.9) 100%
    ),
    url("../images/cta.png") center/cover no-repeat;
  padding: 7rem 0;
  text-align: center;
  position: relative;
}
.cta-pattern {
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    0deg,
    rgba(255, 255, 255, 0.02) 0,
    rgba(255, 255, 255, 0.02) 1px,
    transparent 1px,
    transparent 60px
  );
  pointer-events: none;
}
.cta-content,
.map-placeholder,
.testi-card,
footer {
  position: relative;
}
.cta-content {
  z-index: 2;
}
.cta-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 3.8rem);
  font-weight: 800;
  color: var(--white);
  max-width: 800px;
  margin: 0 auto 1rem;
  line-height: 1.1;
}
.cta-sub {
  color: rgba(255, 255, 255, 0.6);
  font-size: 1.05rem;
  max-width: 500px;
  margin: 0 auto 2.5rem;
}
.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 4rem;
}
.testi-card {
  background: var(--off-white);
  border: 1px solid var(--light-grey);
  border-radius: var(--radius);
  padding: 2rem;
}
.testi-card:hover {
  box-shadow: var(--shadow-md);
  border-color: transparent;
  transform: translateY(-4px);
}
.testi-quote {
  font-size: 2.5rem;
  color: var(--orange);
  opacity: 0.3;
  font-family: Georgia, serif;
  line-height: 1;
  margin-bottom: 0.75rem;
}
.testi-text {
  font-size: 0.93rem;
  color: var(--text-body);
  line-height: 1.75;
  font-style: italic;
  margin-bottom: 1.25rem;
}
.testi-avatar,
.testi-name {
  font-size: 1rem;
  font-family: var(--font-display);
}
.testi-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.testi-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  color: var(--orange);
}
.testi-name {
  font-weight: 700;
  color: var(--navy);
}
.testi-role {
  font-size: 0.78rem;
  color: var(--text-light);
}
.partners-label {
  text-align: center;
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 2rem;
}
.partners-strip {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
}
.partner-logo {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--mid-grey);
  transition: color var(--transition);
  cursor: default;
}
.contact-info-label,
.map-placeholder-text {
  font-family: var(--font-display);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.contact-info-value,
.partner-logo:hover {
  color: var(--navy);
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 4rem;
  align-items: start;
}
.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.contact-info-icon,
.map-placeholder {
  display: flex;
  align-items: center;
  border-radius: var(--radius);
  background: var(--navy);
}
.contact-info-icon {
  min-width: 44px;
  justify-content: center;
  color: var(--orange);
}
.contact-info-label {
  color: var(--text-light);
  margin-bottom: 0.15rem;
}
.map-placeholder {
  height: 185px;
  justify-content: center;
  margin-top: 2rem;
  overflow: hidden;
}
.map-placeholder-text {
  font-size: 0.9rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.3);
}
.map-placeholder::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(
      rgba(255, 255, 255, 0.04) 1px,
      transparent 1px
    ),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 30px 30px;
}
.contact-form {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2.5rem;
  box-shadow: var(--shadow-md);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  background: var(--off-white);
  border: 2px solid var(--light-grey);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.93rem;
  color: var(--navy);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: 0;
  appearance: none;
}
.footer-brand,
.footer-col-title {
  font-family: var(--font-display);
}
.form-group textarea {
  resize: vertical;
  min-height: 110px;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--orange);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(232, 112, 10, 0.12);
}
.footer-bottom-links a::after,
.footer-links a::after,
.footer-social::before {
  border: 1px solid var(--orange);
  position: absolute;
}
.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--mid-grey);
}
footer {
  background: linear-gradient(180deg, #0c1b2a 0, #08131f 100%);
  padding: 5rem 0 0;
  overflow: hidden;
}
footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--orange), transparent);
  animation: 4s linear infinite glowMove;
}
@keyframes glowMove {
  0% {
    left: -100%;
  }
  100% {
    left: 100%;
  }
}
footer::after {
  content: "";
  bottom: -80px;
  right: -80px;
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(255, 140, 0, 0.08), transparent 70%);
  animation: 6s ease-in-out infinite alternate floatBg;
}
@keyframes floatBg {
  from {
    transform: translateY(0);
  }
  to {
    transform: translateY(-30px);
  }
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
  padding-bottom: 4rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.footer-grid > div {
  opacity: 0;
  transform: translateY(30px);
  animation: 0.8s forwards fadeUp;
}
.footer-grid > div:first-child {
  animation-delay: 0.2s;
}
.footer-grid > div:nth-child(2) {
  animation-delay: 0.4s;
}
.footer-grid > div:nth-child(3) {
  animation-delay: 0.6s;
}
.footer-grid > div:nth-child(4) {
  animation-delay: 0.8s;
}
@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.footer-brand {
  font-size: 1.7rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: 0.06em;
  margin-bottom: 1rem;
}
.footer-desc {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.75;
  margin-bottom: 1.5rem;
}
.footer-links a,
.footer-social {
  color: rgba(255, 255, 255, 0.6);
  position: relative;
}
.author-social,
.footer-socials {
  display: flex;
  gap: 0.75rem;
}
.footer-social {
  width: 38px;
  height: 38px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  transition: 0.4s;
  overflow: hidden;
}
.footer-social::before {
  content: "";
  width: 120%;
  height: 120%;
  transform: scale(0);
  border-radius: 50%;
  transition: transform 0.4s;
  z-index: 0;
}
.footer-social i {
  position: relative;
  z-index: 1;
}
.footer-social:hover {
  color: var(--white);
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(255, 140, 0, 0.4);
}
.footer-col-title {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 1.25rem;
}
.footer-links {
  padding: 0;
  margin: 0;
}
.footer-links li {
  margin-bottom: 0.6rem;
}
.footer-links a {
  font-size: 0.88rem;
  transition: color 0.3s;
}
.footer-links a::after {
  content: "";
  left: 0;
  bottom: -4px;
  width: 0;
  height: 2px;
  transition: width 0.3s;
}
.footer-certifications {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.footer-cert {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.5);
  transition: 0.3s;
}
.footer-cert i {
  color: var(--orange);
  transition: transform 0.3s;
}
.footer-cert:hover {
  color: var(--white);
  transform: translateX(6px);
}
.footer-cert:hover i {
  transform: scale(1.2);
}
.footer-bottom {
  padding: 2rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-bottom p {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.35);
}
.footer-bottom-links {
  display: flex;
  gap: 1.5rem;
}
.footer-bottom-links a {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.45);
  position: relative;
  padding-bottom: 4px;
  text-decoration: none;
  transition: color 0.3s;
}
.author-social a,
.blog-card,
.category-item,
.contact-info-item,
.related-card,
.share-btn {
  transition: var(--transition);
}
.footer-bottom-links a::after {
  content: "";
  width: 0;
  height: 1px;
  bottom: 0;
  left: 0;
  transition: width 0.3s;
}
@media (max-width: 992px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 600px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}
@media (max-width: 1100px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .industries-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 900px) {
  .nav-toggle {
    display: flex;
  }
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--navy);
    flex-direction: column;
    gap: 0;
    padding: 5rem 2rem 2rem;
    transition: right 0.4s;
    box-shadow: -4px 0 30px rgba(0, 0, 0, 0.4);
  }
  .nav-links.open {
    right: 0;
  }
  .nav-links a {
    padding: 0.9rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    width: 100%;
  }
  .nav-cta {
    margin-top: 1rem;
    text-align: center;
  }
  .about-grid,
  .contact-grid,
  .esg-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .about-img-card {
    bottom: 1rem;
    right: 1rem;
  }
  .about-corner-badge {
    top: 1rem;
    left: 1rem;
  }
  .projects-grid,
  .testi-grid {
    grid-template-columns: 1fr;
  }
  .project-card.large {
    grid-column: span 1;
  }
  .hero-content {
    padding-left: 0;
  }
}
@media (max-width: 650px) {
  section {
    padding: 4rem 0;
  }
  .esg-metrics,
  .footer-grid,
  .form-row,
  .services-grid {
    grid-template-columns: 1fr;
  }
  .industries-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .hero-stats {
    gap: 1.5rem;
  }
}
.blog-grid,
.cards-grid,
.projects-grid,
.related-grid {
  grid-template-columns: repeat(3, 1fr);
}
@media (max-width: 991px) {
  .nav-links {
    padding: 120px 0 100px;
  }
  .nav-links li {
    margin: 18px 0;
  }
  .nav-links a {
    font-size: 1.1rem;
    letter-spacing: 1px;
  }
  .nav-links .nav-cta {
    margin-top: 25px;
  }
}
#blog-hero,
#faq-hero,
#privacy-hero,
#terms-hero {
  min-height: 40vh;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--navy);
}
.privacy-hero-bg,
.terms-hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(
      135deg,
      rgba(10, 22, 40, 0.85) 0,
      rgba(15, 33, 68, 0.75) 100%
    ),
    url("https://images.unsplash.com/photo-1589829545856-d10d557cf95f?w=1600&q=80")
      center/cover no-repeat;
  opacity: 0.3;
}
.blog-hero-content,
.faq-hero-content,
.privacy-hero-content,
.terms-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  width: 100%;
}
.privacy-hero-content h1,
.terms-hero-content h1 {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 1rem;
}
.blog-hero-content p,
.faq-hero-content p,
.privacy-hero-content p,
.terms-hero-content p {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.7);
  max-width: 600px;
  margin: 0 auto;
}
.privacy-content h2,
.privacy-content h3,
.terms-content h3 {
  color: var(--navy);
  font-weight: 700;
  font-family: var(--font-display);
}
.privacy-content h3,
.terms-content h3 {
  font-size: 1.3rem;
  margin: 1.5rem 0 0.75rem;
}
.privacy-content p {
  font-size: 1rem;
  color: var(--text-body);
  line-height: 1.8;
}
.blog-post ol,
.blog-post ul,
.privacy-content ol,
.privacy-content ul,
.terms-content ol,
.terms-content ul {
  margin: 1rem 0 1.5rem 1.5rem;
  color: var(--text-body);
}
.blog-post li,
.privacy-content li,
.terms-content li {
  margin-bottom: 0.5rem;
}
.privacy-content .last-updated,
.terms-content .last-updated {
  font-style: italic;
  color: var(--text-light);
  margin-bottom: 2rem;
}
.terms-content {
  max-width: 900px;
  margin: 0 auto;
  padding: 4rem 0;
}
.terms-content h2 {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--navy);
  margin: 2.5rem 0 1rem;
}
.terms-content p {
  font-size: 1rem;
  color: var(--text-body);
  line-height: 1.8;
  margin-bottom: 1.25rem;
}
.privacy-content {
  max-width: 1200px;
  background: var(--white);
  box-shadow: var(--shadow);
}
.last-updated {
  color: var(--accent);
  font-style: italic;
  margin-bottom: 2rem;
}
.privacy-content h2 {
  font-size: 2rem;
  margin: 2.5rem 0 1rem;
  border-left: 6px solid var(--orange);
  padding-left: 1.2rem;
}
.privacy-content p {
  margin-bottom: 1.2rem;
  color: var(--text-light);
}
.privacy-content ul {
  margin: 1rem 0 2rem 2rem;
  color: var(--text-light);
}
.section-header {
  text-align: center;
  margin-bottom: 3rem;
}
.section-tag {
  color: var(--secondary);
  text-transform: uppercase;
  letter-spacing: 2px;
}
.section-heading {
  font-size: 2.8rem;
  color: var(--primary);
  margin: 0.5rem 0 1rem;
}
.divider {
  width: 80px;
  height: 3px;
  background: var(--secondary);
  margin: 1rem auto;
}
.contact-info-item {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  background: #fff;
  padding: 1rem 1.5rem;
  border-radius: 50px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.02);
}
.contact-info-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0, 45, 76, 0.08);
}
.contact-info-icon {
  width: 50px;
  height: 50px;
  background: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}
.contact-info-label {
  font-size: 0.9rem;
  color: var(--accent);
  font-weight: 600;
}
.contact-info-value {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--text-dark);
}
.privacy-content {
  margin: 4rem auto;
  padding: 2rem;
  background: var(--white);
  border-radius: 20px;
  box-shadow: var(--shadow);
}
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
}
.section-tag {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--orange);
  padding: 0.3rem 0.75rem;
  border: 1px solid var(--orange);
  border-radius: 30px;
  margin-bottom: 1rem;
}
.section-heading {
  font-size: clamp(2rem, 4vw, 2rem);
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 1rem;
}
.section-sub {
  font-size: 1.05rem;
  color: var(--text-light);
  max-width: 600px;
  line-height: 1.7;
}
.section-sub.light {
  color: rgba(255, 255, 255, 0.65);
}
#blog-detail-hero {
  min-height: 60vh;
  position: relative;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: var(--navy);
}
.blog-detail-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(
      135deg,
      rgba(10, 22, 40, 0.7) 0,
      rgba(15, 33, 68, 0.6) 100%
    ),
    url("https://images.unsplash.com/photo-1518709414768-a88981a4515d?w=1600&q=80")
      center/cover no-repeat;
  opacity: 0.7;
}
.blog-detail-content {
  position: relative;
  z-index: 2;
  padding: 4rem 0;
  width: 100%;
}
.blog-hero-bg,
.hero-bg {
  position: absolute;
  inset: 0;
}
.blog-detail-meta {
  display: flex;
  gap: 1.5rem;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 1rem;
}
.blog-date i,
.blog-detail-meta span i {
  margin-right: 0.3rem;
}
.blog-detail-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800;
  color: var(--white);
  max-width: 900px;
  line-height: 1.1;
  margin-bottom: 1.5rem;
}
.blog-detail-author {
  display: flex;
  align-items: center;
  gap: 1rem;
  color: var(--white);
}
.author-avatar,
.author-bio {
  display: flex;
  align-items: center;
}
.author-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--orange);
  justify-content: center;
  font-weight: 800;
  font-size: 1.2rem;
}
.author-bio,
.blog-post blockquote {
  background: var(--off-white);
  border-radius: var(--radius);
}
.author-name,
.blog-post h2,
.blog-post h3 {
  font-weight: 700;
}
.author-info {
  line-height: 1.4;
}
.author-title {
  font-size: 0.8rem;
  opacity: 0.7;
}
.blog-post,
.comments-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 3rem 0;
}
.blog-post h2 {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--navy);
  margin: 2rem 0 1rem;
}
.blog-post h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--navy);
  margin: 1.5rem 0 0.75rem;
}
.blog-post p {
  font-size: 1.05rem;
  color: var(--text-body);
  line-height: 1.8;
  margin-bottom: 1.25rem;
}
.blog-post blockquote {
  border-left: 4px solid var(--orange);
  padding: 1.5rem;
  font-style: italic;
  margin: 2rem 0;
}
.blog-post blockquote p,
.faq-answer p:last-child {
  margin-bottom: 0;
}
.blog-post figure {
  margin: 2rem 0;
}
.blog-post figcaption {
  font-size: 0.8rem;
  color: var(--text-light);
  text-align: center;
  margin-top: 0.5rem;
}
.author-bio {
  padding: 2rem;
  gap: 2rem;
  margin: 3rem 0;
}
.author-bio-avatar,
.author-social a {
  display: flex;
  align-items: center;
  border-radius: 50%;
}
.author-bio-avatar {
  width: 80px;
  height: 80px;
  background: var(--navy);
  justify-content: center;
  font-size: 2rem;
  font-weight: 800;
  color: var(--orange);
}
.author-bio-content h4 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}
.author-bio-content p {
  font-size: 0.9rem;
  color: var(--text-light);
  margin-bottom: 1rem;
}
.author-social a {
  width: 34px;
  height: 34px;
  background: var(--white);
  justify-content: center;
  color: var(--navy);
}
.share-btn,
.share-buttons {
  align-items: center;
  display: flex;
}
.share-buttons {
  gap: 0.75rem;
  margin: 2rem 0;
}
.share-label {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--text-light);
}
.share-btn {
  width: 38px;
  height: 38px;
  background: var(--off-white);
  border-radius: 50%;
  justify-content: center;
  color: var(--navy);
}
.comment {
  display: flex;
  gap: 1rem;
  margin-bottom: 2rem;
}
.comment-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--light-grey);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  color: var(--navy);
}
.comment-content {
  flex: 1;
}
.comment-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 0.5rem;
}
.comment-author {
  font-weight: 700;
  color: var(--navy);
}
.comment-date,
.related-date {
  font-size: 0.75rem;
  color: var(--text-light);
}
.comment-text {
  font-size: 0.95rem;
  line-height: 1.6;
}
.comment-reply,
.related-category {
  font-size: 0.7rem;
  text-transform: uppercase;
  color: var(--orange);
}
.comment-reply {
  font-family: var(--font-display);
  font-weight: 700;
  margin-top: 0.5rem;
  display: inline-block;
}
.comment-form {
  background: var(--off-white);
  border-radius: var(--radius);
  padding: 2rem;
  margin-top: 3rem;
}
.form-group {
  margin-bottom: 1.25rem;
}
.form-group label {
  display: block;
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 0.5rem;
}
.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  background: var(--white);
  border: 2px solid var(--light-grey);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.93rem;
  transition: border-color var(--transition);
}
.faq-answer p,
.related-content {
  padding: 1.5rem;
}
.category-item,
.related-title {
  font-family: var(--font-display);
}
.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--orange);
  outline: 0;
}
.related-grid {
  display: grid;
  gap: 2rem;
  margin: 3rem 0;
}
.related-category,
.related-title {
  font-weight: 700;
  margin-bottom: 0.5rem;
}
.blog-card,
.related-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--light-grey);
}
.related-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}
.related-img {
  width: 100%;
  height: 180px;
}
.related-title {
  font-size: 1.1rem;
  color: var(--navy);
  line-height: 1.3;
}
.blog-meta,
.category-item {
  color: var(--text-light);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.blog-hero-bg {
  background: linear-gradient(
      135deg,
      rgba(10, 22, 40, 0.85) 0,
      rgba(15, 33, 68, 0.75) 100%
    ),
    url("https://images.unsplash.com/photo-1504711434969-e33886168f5c?w=1600&q=80")
      center/cover no-repeat;
  opacity: 0.4;
}
.blog-hero-content h1,
.faq-hero-content h1 {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 1rem;
}
.category-strip {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  margin: 3rem 0 2rem;
}
.category-item {
  font-size: 0.85rem;
  font-weight: 600;
  padding: 0.5rem 1.25rem;
  border: 1px solid var(--mid-grey);
  border-radius: 30px;
  cursor: pointer;
}
.category-item.active,
.category-item:hover {
  background: var(--orange);
  border-color: var(--orange);
  color: var(--white);
}
.blog-grid {
  display: grid;
  gap: 2rem;
  margin-bottom: 4rem;
}
.blog-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}
.blog-img {
  width: 100%;
  height: 220px;
  transition: transform 0.5s;
}
.blog-card:hover .blog-img {
  transform: scale(1.03);
}
.blog-content {
  padding: 1.75rem;
}
.blog-meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.75rem;
  margin-bottom: 0.75rem;
}
.blog-category {
  background: rgba(232, 112, 10, 0.1);
  color: var(--orange);
  padding: 0.2rem 0.8rem;
  border-radius: 30px;
  font-weight: 600;
}
.blog-link,
.blog-title {
  font-family: var(--font-display);
  font-weight: 700;
}
.blog-title {
  font-size: 1.3rem;
  color: var(--navy);
  margin-bottom: 0.75rem;
  line-height: 1.3;
}
.blog-excerpt {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 1.25rem;
}
.blog-link {
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--orange);
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  transition: gap var(--transition);
}
.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  margin: 3rem 0;
}
.page-item {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--off-white);
  color: var(--navy);
  font-weight: 600;
  transition: var(--transition);
  cursor: pointer;
}
.faq-category h2,
.project-name,
.project-tag,
.project-view {
  font-family: var(--font-display);
  font-weight: 700;
}
.page-dots {
  color: var(--text-light);
}
.hero-bg {
  background: linear-gradient(
      135deg,
      rgba(10, 22, 40, 0.92) 0,
      rgba(15, 33, 68, 0.82) 50%,
      rgba(10, 22, 40, 0.75) 100%
    ),
    url("https://images.unsplash.com/photo-1500382017468-9049fed747ef?w=1600&q=80")
      center/cover no-repeat;
  transform: scale(1.05);
  transition: transform 12s ease-out;
}
.projects-grid {
  display: grid;
  grid-auto-rows: 260px;
  gap: 1.5rem;
  margin-top: 3rem;
}
.project-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  cursor: pointer;
}
.project-card.large {
  grid-column: span 2;
  height: 340px;
}
.project-img {
  width: 100%;
  height: 100%;
  transition: transform 0.5s;
}
.project-card:hover .project-img {
  transform: scale(1.07);
}
.project-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    transparent 30%,
    rgba(10, 22, 40, 0.92) 100%
  );
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.75rem;
}
.project-tag {
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 0.4rem;
}
.project-name {
  font-size: 1.3rem;
  color: var(--white);
}
.project-region {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.55);
  margin-top: 0.25rem;
}
.project-view {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--orange);
  margin-top: 0.75rem;
  opacity: 0;
  transform: translateY(8px);
  transition: 0.3s;
}
.faq-item,
.faq-question {
  transition: var(--transition);
}
.project-card:hover .project-view {
  opacity: 1;
  transform: translateY(0);
}
.cards-grid {
  display: grid;
  gap: 1.5rem;
  margin-top: 3rem;
}
.faq-hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(
      135deg,
      rgba(10, 22, 40, 0.85) 0,
      rgba(15, 33, 68, 0.75) 100%
    ),
    url("https://images.unsplash.com/photo-1454165804606-c3d57bc86b40?w=1600&q=80")
      center/cover no-repeat;
  opacity: 0.3;
}
.faq-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 4rem 0;
}
.faq-category {
  margin-bottom: 3rem;
}
.faq-category h2 {
  font-size: 1.8rem;
  color: var(--navy);
  margin-bottom: 1.5rem;
  position: relative;
}
.faq-category h2::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--orange), var(--yellow));
}
.faq-item {
  background: var(--white);
  border: 1px solid var(--light-grey);
  border-radius: var(--radius);
  margin-bottom: 1rem;
  overflow: hidden;
}
.faq-item:hover {
  border-color: var(--orange);
  box-shadow: var(--shadow-sm);
}
.faq-question {
  padding: 1.25rem 1.5rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-weight: 600;
  color: var(--navy);
  font-size: 1.1rem;
}
.faq-question i {
  color: var(--orange);
  transition: transform var(--transition);
}
.faq-item.active .faq-question i {
  transform: rotate(180deg);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s;
  background: var(--off-white);
}
.faq-item.active .faq-answer {
  max-height: 300px;
}
.faq-answer p {
  margin: 0;
  font-size: 0.95rem;
  color: var(--text-body);
  line-height: 1.7;
  border-top: 1px solid var(--light-grey);
}
#overview{position: relative;margin-top: 7%;}