/* ===== RESET ===== */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* ===== VARIABLES ===== */
:root {
  --bg: #ffffff;
  --bg-soft: #fbfaf7;
  --card: #ffffff;
  --text: #111111;
  --ink: #141b2d;
  --coal: #0a0f1a;
  --muted: #5c6470;
  --soft: #8a919b;
  --mist: #94a3b8;
  --cloud: #e2e8f0;
  --line: rgba(17, 17, 17, 0.08);

  --gold: #ffffff;
  --gold-light: #ffffff;
  --gold-deep: #ffffff;
  --green: #080808e5;
  --green-light: #080808e5;

  --footer-bg: #071426;
  --footer-bg-2: #0b1d35;
  --footer-text: #e8edf5;
  --footer-muted: #aab6c7;
  --footer-line: rgba(255, 255, 255, 0.08);

  --shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
  --shadow-soft: 0 12px 28px rgba(0, 0, 0, 0.06);

  --radius: 26px;
  --radius-sm: 12px;
  --container: 1240px;

  --font-display: "Open Sans", sans-serif;
  --font-body: "Open Sans", sans-serif;

  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
}

/* ===== BASE ===== */
html {
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
}

* {
  font-family: var(--font-display) !important;
}

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* ===== GLOBAL FONT FORCE ===== */
* {
  font-family: "Open Sans", sans-serif !important;
}

img {
  display: block;
  max-width: 100%;
}

a {
  text-decoration: none;
  color: inherit;
}

.container,
.careers-container,
.section-wrap {
  width: min(var(--container), 92%);
  margin: 0 auto;
}

/* ===== ANIMATION BASE ===== */
[data-animate] {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

[data-animate].visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== NAVIGATION ===== */
#main-header,
.main-nav {
  width: 100%;
  background: #ffffff;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
  box-shadow: 0 0 7px rgba(0, 0, 0, 0.1);
  padding: 0;
}

.container,
.nav-inner {
  width: 80%;
  max-width: 1080px;
  margin: auto;
}

.et_menu_container,
.nav-inner {
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* EXACT BOTAKE STYLE FOR TERRI LOGO */

.logo_container {
  display: flex;
  align-items: center;
  height: 100%;
  flex-shrink: 0;
}

.nav-logo {
  display: flex;
  align-items: center;
  justify-content: flex-start;

  width: 300px !important;   /* wider like Botake */
  height: 100%;
  overflow: visible;
}

#logo,
.logo-img {
  width: 100% !important;   /* fills width */
  height: auto !important;

  max-height: 115px !important;
  object-fit: contain !important;

  display: block;

  background: transparent !important;
  padding: 0 !important;
  margin: 0 !important;
  border: none !important;
  box-shadow: none !important;
  border-radius: 0 !important;
}

/* navbar height */
.et_menu_container,
.nav-inner {
  height: 120px !important;
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: none;
  background: transparent;
  cursor: pointer;
  z-index: 1001;
}

.nav-toggle span {
  display: block;
  width: 26px;
  height: 3px;
  background: #111;
  margin: 5px auto;
  border-radius: 10px;
}


#top-menu,
.nav-links {
  list-style: none;
  display: flex;
  gap: 22px;
  margin: 0;
  padding: 0;
}

#top-menu li a,
.nav-links li a {
  color: #080808e5;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  transition: 0.3s ease;
  padding: 0;
  background: transparent;
  border-radius: 0;
  white-space: nowrap;
}

#top-menu li a:hover,
#top-menu li a.active,
.nav-links li a:hover,
.nav-links li a.active {
  color: #79c54e;
  background: transparent;
}

.nav-toggle {
  display: none;
}

.nav-links li a.active {
  color: #b98203 !important;
  font-weight: 800;
}

.nav-links li a.active::after {
  content: "";
  display: block;
  width: 100%;
  height: 3px;
  background: #b98203;
  margin-top: 6px;
  border-radius: 20px;
}

@media (max-width: 980px) {
  body {
    padding-top: 80px;
  }

  .et_menu_container,
  .nav-inner {
    height: 80px;
  }

  #top-menu,
  .nav-links {
    display: none;
  }

  #logo,
  .logo-img {
    max-height: 55px;
  }
}
/* ===== BUTTONS ===== */
.btn,
.btn-primary,
.btn-secondary,
.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: none;
  cursor: pointer;
  transition: all 0.3s var(--ease);
}

.btn {
  padding: 14px 32px;
  font-size: 15px;
  font-weight: 600;
  border-radius: 10px;
}

.btn-primary {
  padding: 15px 24px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 700;
  background: #111;
  color: #fff;
  box-shadow: var(--shadow-soft);
}

.btn-primary:hover {
  background: var(--gold);
  color: #111;
  transform: translateY(-2px);
}

.btn-secondary {
  padding: 15px 24px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 700;
  background: #fff;
  color: #111;
  border: 1px solid var(--line);
}

.btn-secondary:hover {
  border-color: var(--gold);
  color: var(--gold-deep);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: #111;
  border: 1.5px solid rgba(17, 17, 17, 0.25);
}

.btn-outline:hover {
  border-color: var(--gold);
  background: rgba(255, 255, 255, 0.12);
}

.btn-full {
  width: 100%;
}

/* ===== COMMON SECTION ===== */
.section-tag {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 45px);
  font-weight: 600;
  line-height: 1.1;
  margin-bottom: 16px;
  letter-spacing: -0.03em;
}

.section-title em,
.text-accent {
  color: var(--gold);
  font-style: italic;
}

.section-sub {
  font-size: 17px;
  color: var(--mist);
  max-width: 520px;
}

.section-header {
  text-align: center;
  margin-bottom: 56px;
}

.section-header .section-sub {
  margin: 0 auto;
}

.center-btn {
  text-align: center;
  margin-top: 40px;
}

/* ===== INVESTMENT PAGE ===== */
.investment-page {
  --bg: #191717;
  --bg-soft: #141212;
  --card: #ffffff;
  --gold: #ffffff;
  --gold-dark: #ffffff;
  --text-dark: #141414;
  --text: #52525b;
  --muted: #71717a;
  --line: #ececec;
  --shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
  --shadow-hover: 0 20px 45px rgba(0, 0, 0, 0.12);
  min-height: 100vh;
  background: #ffffff;
}



.companies-hero {
  position: relative;
  margin-top: 110px;
  min-height: 330px;


  background-size: cover;
  background-position: center right;
  background-repeat: no-repeat;
}


.companies-hero {
  position: relative;
  margin-top: 110px;
  min-height: 500px;
  background-size: cover;
  background-position: center right;
  background-repeat: no-repeat;
  overflow: hidden;
  transition: background-image 1s ease-in-out;
}

.companies-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(255,255,255,0.97) 0%,
    rgba(255,255,255,0.9) 32%,
    rgba(255,255,255,0.15) 55%
  );
  z-index: 1;
}

.companies-hero-inner {
  position: relative;
  z-index: 2;
  min-height: 430px;
  display: flex;
  align-items: center;
}

.companies-hero-inner {
  min-height: 430px;
  display: flex;
  align-items: center;
}

.companies-hero-content {
  max-width: 560px;
  margin-top: 5%;
}

.companies-hero-content span {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: #2FB12A;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.companies-hero-content span::before {
  content: "";
  width: 42px;
  height: 3px;
  background: #b98203;
  border-radius: 20px;
}

.companies-hero-content h1 {
  font-size: 48px;
  line-height: 1.08;
  margin: 0 0 18px;
  color: #102f3a;
}

.companies-hero-content p {
  font-size: 16px;
  line-height: 1.8;
  color: #526b6b;
  margin-bottom: 28px;
}

.companies-hero-btn {
  display: inline-block;
  background: #B98203;
  color: #fff;
  padding: 15px 32px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 800;
  margin-top: 5%;
}




/* ===== ABOUT ===== */
.about {
  padding: 120px 0;
  background: #fff;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.about-text {
  font-size: 17px;
  color: #475569;
  line-height: 1.8;
  margin-bottom: 32px;
}

.about .btn-primary {
    background: #b98203;
  color: #fff;
  padding: 10px 34px;
  border-radius: 5px;
  font-size: 15px;
  font-weight: 800;
  text-decoration: none;
  box-shadow: 0 14px 30px rgba(8, 121, 111, 0.25);
}

.about .btn-primary:hover {
  background: #b98203;
  color: #fff;
  transform: translateY(-3px);
}

.pillars {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.pillar {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px 24px;
  background: #f1f5f9;
  border-radius: var(--radius-sm);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

.pillar:hover {
  transform: translateX(8px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.pillar-icon {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  color: var(--green);
}

.pillar-icon svg {
  width: 100%;
  height: 100%;
}

.pillar-text h4 {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 2px;
}

.pillar-text p {
  font-size: 13px;
  color: var(--mist);
}

/* ===== COMPANIES ===== */
.companies {
  padding: 60px 0;
  background: #f8fafc;
}

.companies-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.company-card {
  position: relative;
  background: #fff;
  border-radius: var(--radius-sm);
  padding: 14px 20px;
  height: 300px;
  border: 1px solid #e2e8f0;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.company-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
}

.card-stripe {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--stripe, var(--gold));
}

.card-icon {
  width: 100%;
  height: 105px;
  margin: 0 0 6px 0;
  overflow: hidden;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4px;
}

.card-img {
  max-width: 85%;
  max-height: 95px;
  object-fit: contain;
  display: block;
}

.img-5brands {
  transform: scale(0.9);
}

.img-botake {
  transform: scale(0.9);
}

.img-terri {
  transform: scale(1.1);
  object-fit: contain;
}

.company-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: #000;
  margin-bottom: 5px;
}

.card-cat {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  color: #000;
  margin-bottom: 6px;
}

.company-card p {
  font-size: 13px;
  color: #000;
  line-height: 1.35;
  margin: 0 0 8px 0;
}

.card-link {
  font-size: 13px;
  font-weight: 600;
  color: #000;
  text-decoration: none;
  transition: all 0.3s ease;
  margin-top: 6px;
}

.card-link:hover {
  color: #000;
  text-decoration: none;
}

/* ===== INDUSTRIES ===== */
.industries-image-section {
  padding: 110px 0;
  background: #ffffff;
}

.industry-image-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.industry-image-card {
  position: relative;
  height: 260px;
  border-radius: 18px;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  color: #fff;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.12);
  transition: 0.35s ease;
}

.industry-image-card:hover {
  transform: translateY(-8px);
}

.industry-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0,0,0,0.15),
    rgba(0,0,0,0.78)
  );
}

.industry-content {
  position: relative;
  z-index: 2;
  height: 100%;
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.industry-big-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--gold);
  color: #111;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 34px;
  margin-bottom: 18px;
}

.industry-content h3 {
  font-size: 24px;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 8px;
}

.industry-content p {
  font-size: 15px;
  line-height: 1.5;
  color: rgba(255,255,255,0.9);
  max-width: 230px;
}

.industry-arrow {
  position: absolute;
  right: 26px;
  bottom: 24px;
  font-size: 34px;
  font-weight: 400;
}

@media (max-width: 1100px) {
  .industry-image-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 650px) {
  .industry-image-grid {
    grid-template-columns: 1fr;
  }

  .industry-image-card {
    height: 240px;
  }
}

/* ===== PROJECTS ===== */
.projects-image-section {
  padding: 100px 0;
  background: #f8fafc;
}

.projects-image-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.project-image-card {
  position: relative;
  height: 280px;
  border-radius: 22px;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  color: #fff;
  text-decoration: none;
  box-shadow: 0 18px 45px rgba(0,0,0,0.14);
  transition: 0.35s ease;
}

.project-image-card:hover {
  transform: translateY(-8px);
}

.project-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0,0,0,0.10),
    rgba(0,0,0,0.78)
  );
}

.project-content {
  position: relative;
  z-index: 2;
  height: 100%;
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.project-big-icon {
  width: 82px;
  height: 82px;
  border-radius: 22px;
  background: var(--gold);
  color: #111;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 42px;
  margin-bottom: 18px;
}

.project-content h3 {
  font-size: 22px;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 10px;
}

.project-content span {
  font-size: 14px;
  font-weight: 700;
  color: var(--gold-light);
}

@media (max-width: 1100px) {
  .projects-image-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 650px) {
  .projects-image-grid {
    grid-template-columns: 1fr;
  }
}

/* ===== PARTNERSHIPS ===== */
.partnerships {
  position: relative;
  padding: 120px 0;
  background: #ffffff !important;
  overflow: hidden;
}

.partnerships-bg {
  position: absolute;
  inset: 0;
}

.partnerships-pattern {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 80% 20%, rgba(255,255,255,0.12) 0%, transparent 40%),
    radial-gradient(circle at 20% 80%, rgba(26,107,60,0.06) 0%, transparent 40%);
}

.partnerships-content {
  position: relative;
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
}

.partnerships .section-tag {
  color: var(--gold-deep) !important;
}

.partnerships .section-title {
  color: #111 !important;
}

.partnerships-content > p {
  font-size: 17px;
  color: #475569 !important;
  line-height: 1.7;
  margin-bottom: 32px;
}

.partnerships-types {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 36px;
}

.ptype {
  padding: 8px 18px;
  background: #f8fafc !important;
  border: 1px solid #e2e8f0 !important;
  border-radius: 40px;
  font-size: 13px;
  font-weight: 500;
  color: #334155 !important;
}

.partnerships .btn-primary {
  background: #111 !important;
  color: #fff !important;
}

.partnerships .btn-primary:hover {
  background: var(--gold) !important;
  color: #111 !important;
}

/* ===== NEWS ===== */
.news-overlay-section {
  padding: 110px 0;
  background: #f8fafc;
}

.news-overlay-section .section-sub {
  max-width: 720px;
  margin: 0 auto;
  color: #64748b;
}

.news-overlay-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  margin-top: 50px;
}

.news-overlay-card {
  position: relative;
  height: 390px;
  border-radius: 18px;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  text-decoration: none;
  color: #fff;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.16);
  transition: 0.35s ease;
}

.news-overlay-card:hover {
  transform: translateY(-8px);
}

.news-dark {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0,0,0,0.15) 0%,
    rgba(0,0,0,0.45) 45%,
    rgba(0,0,0,0.88) 100%
  );
}

.news-content {
  position: relative;
  z-index: 2;
  height: 100%;
  padding: 32px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.news-badge {
  position: absolute;
  top: 28px;
  left: 28px;
  padding: 9px 16px;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  color: #fff;
}

.news-badge.blue { background: #0ea5e9; }
.news-badge.green { background: #65a30d; }
.news-badge.pink { background: #be185d; }
.news-badge.lime { background: #65a30d; }
.news-badge.purple { background: #7c3aed; }
.news-badge.orange { background: #d97706; }

.news-content .news-date {
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #f8fafc;
  margin-bottom: 12px;
  font-weight: 700;
}

.news-content h3 {
  font-family: var(--font-display);
  font-size: 26px;
  line-height: 1.18;
  margin-bottom: 14px;
  color: #fff;
}

.news-content p {
  font-size: 15px;
  line-height: 1.65;
  color: rgba(255,255,255,0.88);
  margin-bottom: 20px;
}

.news-content strong {
  color: var(--gold-light);
  font-size: 15px;
}

@media (max-width: 1100px) {
  .news-overlay-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 650px) {
  .news-overlay-grid {
    grid-template-columns: 1fr;
  }

  .news-overlay-card {
    height: 350px;
  }
}
/* ===== CAREERS HOME BLOCK ===== */
.careers {
  padding: 100px 0;
  background: #fff;
}

.careers-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  background: var(--coal);
  border-radius: 20px;
  padding: 64px;
}

.careers .section-tag {
  color: var(--gold);
}

.careers .section-title {
  color: #fff;
}

.careers-left p {
  color: rgba(255,255,255,0.7);
  font-size: 16px;
  line-height: 1.7;
}

.career-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 24px;
  background: rgba(255,255,255,0.05);
  border-radius: var(--radius-sm);
  margin-bottom: 12px;
  color: #fff;
  font-weight: 500;
  font-size: 15px;
  transition: background 0.3s ease, transform 0.3s ease;
  cursor: pointer;
}

.career-item:hover {
  background: rgba(255,255,255,0.1);
  transform: translateX(6px);
}

.career-icon {
  font-size: 20px;
}

/* ===== CONTACT ===== */
.contact {
  padding: 120px 0;
  background: #fff;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 64px;
  align-items: start;
}

.contact-left p {
  font-size: 16px;
  color: #64748b;
  line-height: 1.7;
  margin-bottom: 28px;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--ink);
  font-size: 15px;
}

.contact-item svg {
  color: var(--gold);
  flex-shrink: 0;
}

.contact-form {
  background: #fff;
  padding: 40px;
  border-radius: var(--radius-sm);
  border: 1px solid #e2e8f0;
  box-shadow: 0 4px 24px rgba(0,0,0,0.04);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 6px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  font-family: var(--font-body);
  font-size: 14px;
  border: 1.5px solid #e2e8f0;
  border-radius: 10px;
  background: #f8fafc;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  outline: none;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(255,255,255,0.15);
}

.form-group textarea {
  resize: vertical;
}

/* ===== CAREERS PAGE ===== */
.careers-hero-section {
  position: relative;
  overflow: hidden;
  padding: 96px 0 78px;
  background: linear-gradient(
    180deg,
    #ffffff 0px,
    #ffffff 80px,
    #fbfaf7 220px,
    #ffffff 100%
  );
}

.careers-hero-section::before {
  content: "";
  position: absolute;
  top: -120px;
  right: -100px;
  width: 380px;
  height: 380px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,0.10), transparent 70%);
  pointer-events: none;
}

.careers-hero-section::after {
  content: "";
  position: absolute;
  left: -120px;
  bottom: -160px;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,0.07), transparent 72%);
  pointer-events: none;
}

.careers-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(255,255,255,0), rgba(0,0,0,0.01));
  pointer-events: none;
}

.careers-container {
  position: relative;
  z-index: 2;
}

.careers-top {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 70px;
  align-items: center;
  padding: 8px 0 60px;
  border-bottom: 1px solid var(--line);
}

.hero-text-panel {
  max-width: 690px;
}

.careers-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--gold-deep);
  font-size: 13px;
  letter-spacing: 4px;
  font-weight: 700;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.careers-label::before {
  content: "";
  width: 44px;
  height: 1.5px;
  background: var(--gold);
  display: inline-block;
}

.hero-text-panel h1 {
  font-family: var(--font-display);
  font-size: 88px;
  line-height: 0.94;
  font-weight: 700;
  color: #111;
  margin-bottom: 24px;
  letter-spacing: -0.04em;
}

.hero-text-panel p {
  font-size: 19px;
  line-height: 1.9;
  color: var(--muted);
  max-width: 640px;
  margin-bottom: 12px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 28px;
}

.hero-mini-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 34px;
  max-width: 620px;
}

.hero-mini-stat {
  background: rgba(255,255,255,0.78);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 18px 20px;
  box-shadow: 0 10px 24px rgba(0,0,0,0.04);
}

.hero-mini-stat strong {
  display: block;
  font-family: var(--font-display);
  font-size: 30px;
  line-height: 1;
  color: var(--gold-deep);
  margin-bottom: 6px;
}

.hero-mini-stat span {
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--soft);
  font-weight: 700;
}

.careers-image-wrap {
  position: relative;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.hero-frame {
  position: relative;
  width: 100%;
  max-width: 760px;
  padding: 18px;
  border-radius: 38px;
  background: linear-gradient(135deg, rgba(255,255,255,0.22), rgba(255,255,255,0.06));
  box-shadow: 0 28px 80px rgba(0,0,0,0.10);
}

.hero-frame::before {
  content: "";
  position: absolute;
  inset: 8px;
  border: 1px solid rgba(255,255,255,0.26);
  border-radius: 32px;
  pointer-events: none;
}

.careers-slider {
  position: relative;
  width: 100%;
  height: 560px;
  overflow: hidden;
  border-radius: 28px;
  background: #f5f5f5;
  border: 1px solid rgba(17,17,17,0.08);
}

.careers-slider::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(to top, rgba(0,0,0,0.12), rgba(0,0,0,0.01)),
    linear-gradient(to right, rgba(255,255,255,0.02), rgba(255,255,255,0));
  pointer-events: none;
}

.careers-slider img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1s ease-in-out, transform 5s ease;
  transform: scale(1.04);
}

.careers-slider img.active {
  opacity: 1;
  transform: scale(1);
}

.stats-strip {
  padding: 44px 0;
  overflow: hidden;
  background: #f8fafc;
  margin-top: 24px;
  border-radius: 22px;
  border: 1px solid #e2e8f0;
}

.stats-track {
  display: flex;
  width: max-content;
  animation: marquee 28s linear infinite;
}

@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.stat-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 0 54px;
  white-space: nowrap;
  flex-shrink: 0;
}

.stat-num {
  display: block;
  font-family: var(--font-display);
  font-size: 44px;
  font-weight: 700;
  color: #111;
}

.stat-label {
  font-size: 13px;
  font-weight: 700;
  color: #475569;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.positions-section {
  padding: 108px 0 120px;
  background: #fff;
}

.section-eyebrow span {
  display: inline-block;
  color: var(--gold-deep);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 4px;
  margin-bottom: 12px;
}

.section-subtext {
  max-width: 650px;
  margin: 0 auto;
  font-size: 18px;
  line-height: 1.8;
  color: var(--muted);
}

.positions-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 42px;
}

.position-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 28px;
  padding: 34px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  transition: all 0.35s var(--ease);
  cursor: pointer;
  box-shadow: 0 10px 24px rgba(0,0,0,0.04);
  position: relative;
  overflow: hidden;
}

.position-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--gold), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.position-card:hover {
  transform: translateY(-8px);
  border-color: rgba(255,255,255,0.30);
  box-shadow: 0 26px 50px rgba(0,0,0,0.10);
}

.position-card:hover::before {
  opacity: 1;
}

.pos-info h3 {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 600;
  color: #111;
  margin-bottom: 12px;
}

.pos-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 16px;
}

.pos-tag {
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  border: 1px solid rgba(17,17,17,0.10);
  color: #111;
  background: #f8f8f8;
}

.pos-tag.gold {
  border-color: rgba(255,255,255,0.28);
  color: var(--gold-deep);
  background: rgba(255,255,255,0.10);
}

.pos-desc {
  font-size: 15px;
  line-height: 1.85;
  color: var(--muted);
  max-width: 430px;
}

.pos-arrow {
  width: 52px;
  height: 52px;
  flex-shrink: 0;
  border-radius: 50%;
  border: 1.5px solid rgba(17,17,17,0.10);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #111;
  transition: all 0.35s var(--ease);
  margin-top: 6px;
  background: #fff;
}

.position-card:hover .pos-arrow {
  background: var(--gold);
  border-color: var(--gold);
  color: #111;
  transform: rotate(-45deg);
}

.cta-section {
  padding: 0 0 110px;
  background: #fff;
}

.cta-card {
  max-width: 1400px;
  width: 92%;
  margin: 0 auto;
  background:
    radial-gradient(circle at top right, rgba(255,255,255,0.12), transparent 24%),
    linear-gradient(135deg, #ffffff 0%, #fbfaf7 100%);
  border: 1px solid var(--line);
  border-radius: 38px;
  padding: 84px;
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 64px;
  align-items: center;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.cta-content h2 {
  font-family: var(--font-display);
  font-size: clamp(34px, 4vw, 60px);
  font-weight: 600;
  line-height: 1.05;
  color: #111;
  margin-bottom: 18px;
  letter-spacing: -0.03em;
}

.cta-content h2 em {
  font-style: italic;
  color: var(--gold-deep);
}

.cta-content p {
  font-size: 17px;
  line-height: 1.9;
  color: var(--muted);
  max-width: 520px;
  margin-bottom: 34px;
}

.cta-features {
  display: grid;
  gap: 18px;
}

.cta-feature {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 22px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  transition: all 0.3s var(--ease);
  box-shadow: 0 8px 20px rgba(0,0,0,0.03);
}

.cta-feature:hover {
  transform: translateX(6px);
  box-shadow: 0 14px 28px rgba(0,0,0,0.06);
  border-color: rgba(255,255,255,0.24);
}

.cta-feat-icon {
  width: 52px;
  height: 52px;
  flex-shrink: 0;
  border-radius: 16px;
  background: rgba(255,255,255,0.12);
  color: var(--gold-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  border: 1px solid rgba(255,255,255,0.18);
}

.cta-feat-text h4 {
  font-size: 16px;
  font-weight: 700;
  color: #111;
  margin-bottom: 4px;
}

.cta-feat-text p {
  font-size: 13px;
  color: var(--muted);
  margin: 0;
  line-height: 1.65;
}

/* ===== FOOTER ===== */
.premium-footer {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(135deg, #f8fafc 0%, #eef3f8 45%, #ffffff 100%);
  color: #111;
  padding: 90px 0 28px;
  border-top: 1px solid #e2e8f0;
}

.footer-map {
  position: absolute;
  inset: 0;
  opacity: 0.08;
  background-image:
    radial-gradient(circle, #111 1px, transparent 1.6px);
  background-size: 12px 12px;
  mask-image: linear-gradient(90deg, transparent 0%, black 18%, black 82%, transparent 100%);
  pointer-events: none;
}

.footer-container {
  position: relative;
  z-index: 2;
  width: 95%;
  max-width: 1600px;
  margin: 0 auto;
}

.footer-main {
  display: grid;
  grid-template-columns: 1.35fr 0.85fr 1.1fr 0.75fr 1.1fr;
  gap: 54px;
  padding-bottom: 60px;
}

.footer-brand-block p {
  font-size: 17px;
  line-height: 1.8;
  color: #475569;
  max-width: 360px;
  margin: 28px 0 34px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 18px;
}

.footer-logo-mark {
  width: 70px;
  height: 70px;
  border-radius: 18px;
  border: 1px solid #cbd5e1;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 36px;
  font-weight: 900;
  color: #111;
  box-shadow: 0 14px 32px rgba(0,0,0,0.08);
}

.footer-logo-text {
  display: block;
  font-size: 32px;
  font-weight: 900;
  letter-spacing: -1px;
  color: #111;
}

.footer-logo-sub {
  display: block;
  font-size: 13px;
  letter-spacing: 3px;
  color: #64748b;
  font-weight: 700;
}

.footer-socials {
  display: flex;
  gap: 12px;
}

.footer-socials a {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1px solid #cbd5e1;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #111;
  font-weight: 800;
  transition: 0.3s ease;
  box-shadow: 0 8px 20px rgba(0,0,0,0.04);
}

.footer-socials a:hover {
  transform: translateY(-4px);
  background: #111;
  color: #fff;
}

.footer-col h4,
.footer-contact h4 {
  font-size: 18px;
  font-weight: 900;
  text-transform: uppercase;
  margin-bottom: 28px;
  color: #111;
  position: relative;
}

.footer-col h4::after,
.footer-contact h4::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -10px;
  width: 42px;
  height: 3px;
  background: #111;
  border-radius: 999px;
}

.footer-col a {
  display: block;
  font-size: 16px;
  color: #475569;
  margin-bottom: 14px;
  transition: 0.25s ease;
}

.footer-col a::before {
  content: "›";
  margin-right: 10px;
  color: #111;
  font-weight: 900;
}

.footer-col a:hover {
  color: #111;
  transform: translateX(5px);
}

.contact-line {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 22px;
}

.contact-line span {
  font-size: 20px;
  width: 28px;
  color: #111;
}

.contact-line p {
  color: #475569;
  font-size: 16px;
  line-height: 1.6;
}

.footer-bottom {
  border-top: 1px solid #dbe3ea;
  padding-top: 28px;
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 24px;
  align-items: center;
}

.footer-bottom p {
  color: #475569;
  font-size: 15px;
}

.footer-legal {
  display: flex;
  justify-content: center;
  gap: 22px;
  flex-wrap: wrap;
}

.footer-legal a {
  color: #475569;
  font-size: 15px;
}

.footer-legal a:hover {
  color: #111;
}

.footer-tagline {
  text-align: right;
  font-weight: 600;
}

.footer-tagline strong {
  color: #111;
}

/* Responsive */
@media (max-width: 1200px) {
  .footer-main {
    grid-template-columns: 1.4fr 1fr 1fr;
  }

  .footer-contact {
    grid-column: span 2;
  }
}

@media (max-width: 850px) {
  .footer-main {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .footer-contact {
    grid-column: auto;
  }

  .footer-bottom {
    grid-template-columns: 1fr;
    text-align: left;
  }

  .footer-legal {
    justify-content: flex-start;
  }

  .footer-tagline {
    text-align: left;
  }
}
/* ===== RESPONSIVE ===== */
@media (max-width: 1100px) {
  .about-grid,
  .contact-grid,
  .careers-inner,
  .footer-top,
  .careers-top,
  .cta-card {
    grid-template-columns: 1fr;
  }

  .companies-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .industries-grid,
  .projects-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .news-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .careers-inner {
    padding: 40px;
  }

  .hero-text-panel h1 {
    font-size: 64px;
  }

  .careers-image-wrap {
    justify-content: flex-start;
  }

  .positions-grid {
    grid-template-columns: 1fr;
  }

  .cta-card {
    padding: 56px 34px;
  }

  .footer-links {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 980px) {
  .nav-toggle {
    display: flex;
  }

  .nav-inner {
    position: relative;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    right: 0;
    width: 300px;
    background: #ffffff !important;
    border: 1px solid #e2e8f0 !important;
    border-radius: 16px;
    padding: 18px;
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
    margin-left: 0;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.12) !important;
  }

  .nav-links.show,
  .nav-links.open,
  .nav-links.active {
    display: flex;
  }

  .nav-links li,
  .nav-links a {
    width: 100%;
  }

  .nav-links a.active,
  .nav-links a:hover {
    color: #111 !important;
    background: rgba(255, 255, 255, 0.14) !important;
  }

  .nav-links a {
    justify-content: flex-start;
    font-size: 14px;
    padding: 12px 14px;
    color: #111 !important;
  }

  .investment-page .hero {
    padding: 60px 25px 46px;
    min-height: 420px;
    background-position: center;
  }

  .investment-page .hero-label {
    font-size: 13px;
    letter-spacing: 2px;
  }

  .investment-page .hero h1 {
    font-size: 44px;
  }

  .investment-page .hero p {
    font-size: 18px;
  }

  .investment-page .invest-card {
    flex: 0 0 100%;
    min-width: 100%;
  }
}

@media (max-width: 768px) {
  .hero-content {
    padding: 120px 24px 60px;
  }

  .hero-stats {
    gap: 20px;
  }

  .hero-scroll {
    display: none;
  }

  .hero-text-panel h1 {
    font-size: 46px;
  }

  .hero-text-panel p,
  .section-subtext,
  .section-sub {
    font-size: 17px;
    line-height: 1.75;
  }

  .careers-hero-section {
    padding: 64px 0 42px;
  }

  .careers-slider {
    height: 360px;
    border-radius: 22px;
  }

  .hero-frame {
    padding: 12px;
    border-radius: 26px;
  }

  .hero-mini-stats {
    grid-template-columns: 1fr;
  }

  .stat-item {
    padding: 0 32px;
  }

  .stat-num {
    font-size: 32px;
  }

  .section-title {
    font-size: 40px;
  }

  .companies-grid,
  .news-grid {
    grid-template-columns: 1fr;
  }

  .industries-grid,
  .projects-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer {
    padding: 72px 0 24px;
  }

  .footer-links {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .partnerships-content {
    padding: 0 16px;
  }

  .logo-text {
    font-size: 1.15rem;
  }

  .logo-mark {
    width: 48px;
    height: 48px;
    font-size: 1.55rem;
    border-radius: 14px;
  }

  .logo-img {
    width: 42px;
    height: 42px;
  }

  .cta-card {
    padding: 44px 24px;
    border-radius: 26px;
  }
}

@media (max-width: 640px) {
  .nav-inner {
    width: 92%;
  }

  .investment-page .container {
    width: 92%;
  }

  .investment-page .hero h1 {
    font-size: 36px;
  }

  .investment-page .hero p {
    font-size: 17px;
  }

  .investment-page .hero-cta a {
    font-size: 16px;
    padding: 14px 20px;
  }

  .investment-page .cards-top {
    flex-direction: column;
    align-items: flex-start;
  }

  .investment-page .cards-title {
    font-size: 28px;
  }

  .investment-page .invest-card h3 {
    font-size: 24px;
  }
}

@media (max-width: 480px) {
  .hero-btns {
    flex-direction: column;
  }

  .btn {
    width: 100%;
    text-align: center;
  }

  .hero-stats {
    flex-wrap: wrap;
  }

  .contact-form {
    padding: 24px;
  }

  .industries-grid,
  .projects-grid,
  .footer-links {
    grid-template-columns: 1fr;
  }
}





/* ===== MAKE WEBSITE CONTENT FIT 95% OF SCREEN ===== */

.container,
.careers-container,
.section-wrap {
  width: 95% !important;
  max-width: 1600px !important;
  margin: 0 auto !important;
}

.nav-inner {
  width: 95% !important;
  max-width: 1600px !important;
  margin: 0 auto !important;
}

.hero-content {
  width: 95% !important;
  max-width: 1600px !important;
}

.cta-card {
  width: 95% !important;
  max-width: 1600px !important;
}



/* ===== FORCE LOGO VISIBILITY ===== */

.logo-img {
  width: 70px !important;
  height: 70px !important;
  object-fit: contain !important;
  object-position: center !important;
  background: #ffffff !important;
  padding: 6px !important;
  border-radius: 14px !important;
  border: 1px solid #e5e7eb !important;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12) !important;
}

.nav-inner {
  min-height: 92px !important;
}

.nav-logo {
  gap: 16px !important;
}

.logo-text {
  color: #111111 !important;
  font-size: 1.65rem !important;
  font-weight: 800 !important;
}

/* ===== WHITE ACCENT FUNCTIONAL FIXES =====
   Gold has been replaced with white. These keep white accents visible on light backgrounds. ===== */
.section-tag,
.card-cat,
.card-link:hover,
.footer-col a:hover,
.partnerships .section-tag,
.careers-label,
.section-eyebrow span,
.cta-content h2 em,
.hero-mini-stat strong,
.pos-tag.gold,
.cta-feat-icon,
.text-accent {
  color: #ffffff !important;
}

/* On white/light cards, use dark outlines so white accent elements do not disappear */
.nav-cta,
.btn-primary:hover,
.project-big-icon,
.industry-big-icon,
.position-card:hover .pos-arrow,
.footer-social a:hover {
  background: #ffffff !important;
  color: #111111 !important;
  border: 1px solid rgba(17,17,17,0.18) !important;
}

/* Keep text readable where white accent appears over light backgrounds */
.about .section-tag,
.companies .section-tag,
.industries-image-section .section-tag,
.projects-image-section .section-tag,
.news-overlay-section .section-tag,
.contact .section-tag,
.positions-section .section-eyebrow span,
.footer-col a:hover {
  color: #111111 !important;
}

.hero .text-accent,
.hero-badge,
.hero .btn-outline:hover,
.news-content strong,
.project-content span {
  color: #ffffff !important;
}

.logo-mark {
  background: #ffffff !important;
  border: 1px solid rgba(17,17,17,0.14) !important;
}


/* BRIGHTER IMAGE CARDS */
.industry-overlay,
.project-overlay,
.news-dark {
  background: linear-gradient(
    180deg,
    rgba(0,0,0,0.05),
    rgba(0,0,0,0.55)
  ) !important;
}

/* BRIGHTER HERO */
.hero-gradient {
  background: linear-gradient(
    90deg,
    rgba(0,0,0,0.45) 0%,
    rgba(0,0,0,0.25) 45%,
    rgba(0,0,0,0.03) 100%
  ) !important;
}

/* MAKE BACKGROUND IMAGES LOOK CLEANER */
.industry-image-card,
.project-image-card,
.news-overlay-card,
.hero-slide {
  background-size: cover;
  background-position: center;
  image-rendering: auto;
}

/* SMALL PERFORMANCE IMPROVEMENT */
.industry-image-card,
.project-image-card,
.news-overlay-card {
  will-change: transform;
}


.companies-card-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 26px;
}

.company-mini-card {
  position: relative;
  background: #ffffff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 18px 45px rgba(20, 40, 50, 0.08);
  transition: 0.3s ease;
}

.company-mini-card:hover {
  transform: translateY(-6px);
}

.company-mini-card img {
  width: 100%;
  height: 145px;
  object-fit: cover;
  display: block;
}

.company-logo-icon {
  position: absolute;
  top: 118px;
  right: 18px;
  width: 54px;
  height: 44px;
  background: #ffffff;
  border-radius: 6px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #08796f;
  font-size: 20px;
}

.company-mini-card h4 {
  margin: 24px 20px 8px;
  font-size: 16px;
  color: #102f3a;
  font-weight: 800;
}

.company-mini-card p {
  margin: 0 20px 24px;
  font-size: 13.5px;
  line-height: 1.7;
  color: #617575;
}

@media (max-width: 1100px) {
  .companies-card-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 800px) {
  .companies-list-header {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .companies-card-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 550px) {
  .companies-card-grid {
    grid-template-columns: 1fr;
  }
}




.company-logo-icon {
  position: absolute;
  top: 118px;
  right: 18px;
  width: 58px;
  height: 58px;
  background: #ffffff;
  border-radius: 10px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px;
  z-index: 3;
}

.company-logo-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}


.industries-section {
  padding: 80px 20px;
  background: #f5f5f5;
  text-align: center;
}

.industries-container {
  max-width: 1180px;
  margin: 0 auto;
}

.industries-header h2 {
  font-family: var(--font-display) !important;
  font-size: 45px;
  color: #111;
  margin-bottom: 10px;
  font-weight: 600;
}

.industries-header p {
  max-width: 700px;
  margin: 0 auto 55px;
  font-size: 15px;
  color: #555;
  line-height: 1.6;
}

.industries-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 28px;
}

.industry-item {
  text-decoration: none;
}

.industry-box {
  height: 145px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}

.industry-box i {
  font-size: 36px;
}

.industry-item h4 {
  font-size: 13px;
  color: #111;
  margin-top: 18px;
  font-weight: 700;
}

.red { background: #08796f; }
.cyan { background: #b98203; }
.orange { background: #ff7900; }
.green { background: #8cbf26; }
.purple { background: #8478ad; }
.blue { background: #0878ad; }

.industry-item:hover .industry-box {
  transform: translateY(-6px);
  transition: 0.3s ease;
}

@media (max-width: 900px) {
  .industries-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 550px) {
  .industries-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.industry-box i,
.industry-box svg {
  font-size: 42px;
  color: #fff;
  display: block;
}


.work-showcase{
  background:#ffffff;
  padding:28px 0 80px;
}

.work-showcase-grid{
  width:calc(100% - 72px);
  margin:0 auto;
  display:grid;
  grid-template-columns:repeat(12, 1fr);
  gap:28px;
}

.work-item{
  position:relative;
  display:block;
  overflow:hidden;
  background:#d9d9d9;
  text-decoration:none;
}

.work-item img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
  transition:transform .6s ease, filter .4s ease;
}

.work-item::after{
  content:"";
  position:absolute;
  inset:0;
  background: rgba(185, 130, 3, 0.88);
  opacity:0;
  transition:opacity .35s ease;
  z-index:1;
}

.work-item-overlay{
  position:absolute;
  left:0;
  right:0;
  bottom:0;
  padding:28px 26px 26px;
  color:#000;
  z-index:2;
  opacity:0;
  transform:translateY(30px);
  transition:opacity .35s ease, transform .35s ease;
}

.work-item:hover::after{
  opacity:1;
}

.work-item:hover .work-item-overlay{
  opacity:1;
  transform:translateY(0);
}

.work-item:hover img{
  transform:scale(1.05);
}

.work-item-tag{
  display:block;
  margin-bottom:12px;
  font-size:12px;
  line-height:1;
  letter-spacing:.08em;
  text-transform:uppercase;
  font-weight:500;
}

.work-item-title{
  margin:0 0 14px;
  font-size:42px;
  line-height:.98;
  font-weight:400;
  letter-spacing:-0.04em;
}

.work-item-text{
  margin:0;
  max-width:85%;
  font-size:17px;
  line-height:1.35;
  font-weight:400;
}

/* row 1 */
.work-item-a{
  grid-column:1 / span 7;
  height:400px;
}

.work-item-b{
  grid-column:8 / span 5;
  height:400px;
}

/* row 2 */
/* number 3 reduced */
.work-item-c{
  grid-column:1 / span 5;
  height:400x;
}

/* number 4 increased */
.work-item-d{
  grid-column:6 / span 7;
  height:400px;
}

/* row 3 */
.work-item-e{
  grid-column:1 / span 7;
  height:400px;
}

.work-item-f{
  grid-column:8 / span 5;
  height:400px;
}

@media (max-width: 1200px){
  .work-showcase-grid{
    width:calc(100% - 40px);
    gap:20px;
  }

  .work-item-a,
  .work-item-b,
  .work-item-c,
  .work-item-d,
  .work-item-e,
  .work-item-f{
    height:380px;
  }

  .work-item-title{
    font-size:32px;
  }
}

@media (max-width: 768px){
  .work-showcase-grid{
    width:calc(100% - 24px);
    grid-template-columns:1fr;
    gap:16px;
  }

  .work-item-a,
  .work-item-b,
  .work-item-c,
  .work-item-d,
  .work-item-e,
  .work-item-f{
    grid-column:auto;
    height:300px;
  }

  .work-item-overlay{
    padding:20px 18px;
  }

  .work-item-title{
    font-size:24px;
  }

  .work-item-text{
    font-size:14px;
    max-width:100%;
  }
}


.work-item{
  position: relative;
  overflow: hidden;
  min-height: 350px;
}

.work-item img{
  width: 100%;
  height: 420px;
  object-fit: cover;
  display: block;
}

.work-item-overlay{
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  padding: 24px;
  background: linear-gradient(
    to top,
    rgba(0,0,0,0.88),
    rgba(0,0,0,0.35),
    transparent
  );
  color: #fff;
}

.work-item-title{
  font-size: 35px;
  line-height: 1.2;
  margin-bottom: 12px;
  color: #fff;
}

.work-item-text{
  font-size: 15px;
  line-height: 1.7;
  color: rgba(255,255,255,0.92);
}

.work-item-tag{
  display: inline-block;
  margin-bottom: 12px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .08em;
  color: #fff;
}

.industries-header{
  text-align: center;
  max-width: 850px;
  margin: 0 auto 60px auto;
  padding: 0 20px;
}

.industries-header h2{
    font-family: "Open Sans", sans-serif !important;
  font-size: 45px;
  font-weight: 600;
  margin-bottom: 18px;
  color: #102f3a;
  margin-top: 5%;
}

.industries-header p{
  font-size: 18px;
  line-height: 1.7;
  color: #5f6b76;
}




/* Tablet + Mobile */
@media (max-width: 980px) {
  .container,
  .nav-inner {
    width: 92%;
  }

  #main-header,
  .main-nav {
    height: 82px;
  }

  .et_menu_container,
  .nav-inner {
    height: 82px !important;
  }

  .nav-logo {
    width: 190px !important;
  }

  #logo,
  .logo-img {
    max-height: 70px !important;
  }

  .nav-toggle {
    display: block;
  }

  #top-menu-nav {
    position: absolute;
    top: 82px;
    left: 0;
    width: 100%;
    background: #ffffff;
    box-shadow: 0 15px 35px rgba(0,0,0,0.08);
    display: none;
  }

  #top-menu-nav.active {
    display: block;
  }

  #top-menu,
  .nav-links {
    display: flex;
    flex-direction: column;
    gap: 0;
    width: 100%;
    padding: 15px 0;
  }

  #top-menu li,
  .nav-links li {
    width: 100%;
  }

  #top-menu li a,
  .nav-links li a {
    display: block;
    padding: 15px 28px;
    font-size: 14px;
    border-bottom: 1px solid #f0f0f0;
  }
}

/* Small phones */
@media (max-width: 480px) {
  .nav-logo {
    width: 155px !important;
  }

  #logo,
  .logo-img {
    max-height: 58px !important;
  }

  #top-menu li a,
  .nav-links li a {
    font-size: 13px;
    padding: 14px 22px;
  }
}

@media (max-width: 980px) {
  #top-menu-nav {
    border-radius: 0 !important;
    margin-top: 1% !important;
  }

  #top-menu,
  .nav-links {
    border-radius: 0 !important;
  }
}

/* ===== COMPANIES HERO RESPONSIVE ===== */

@media (max-width: 980px) {
  .companies-hero {
   margin-top: -10%;
    min-height: 420px;
    background-position: center right;
  }

 .companies-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(255,255,255,0.97) 0%,
    rgba(255,255,255,0.9) 32%,
    rgba(255,255,255,0.15) 55%
  );
  z-index: 1;
}


  .companies-hero-inner {
    min-height: 420px;
  }

  .companies-hero-content {
    max-width: 520px;
    margin-top: 0;
  }

  .companies-hero-content h1 {
    font-size: 40px;
  }
}

@media (max-width: 600px) {
  .companies-hero {
    margin-top: 80px;
    min-height: 380px;
    background-position: center;
  }

  .companies-hero-overlay {
    background: rgba(255,255,255,0.56);
  }

  .companies-hero-inner {
    min-height: 380px;
    padding: 40px 0;
  }

  .companies-hero-content {
    max-width: 100%;
  }

  .companies-hero-content span {
    font-size: 11px;
    letter-spacing: 1.8px;
    gap: 8px;
  }

  .companies-hero-content span::before {
    width: 28px;
    height: 2px;
  }

  .companies-hero-content h1 {
    font-size: 32px;
    line-height: 1.15;
  }

  .companies-hero-content p {
    font-size: 14px;
    line-height: 1.7;
  }

  .companies-hero-btn {
    padding: 13px 24px;
    font-size: 13px;
  }
}

@media (max-width: 980px) {
  .companies-hero {
    margin-top: 0 !important;
    padding-top: 85px !important;
    min-height: 320px !important;
  }

  .companies-hero-inner {
    min-height: 330px !important;
    align-items: flex-start !important;
    padding-top: 70px !important;
  }
}


/* ABOUT MOBILE RESPONSIVE */
@media (max-width: 980px) {
  .about {
    padding: 70px 0;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .section-title {
    font-size: 38px;
    line-height: 1.15;
  }

  .about-text {
    font-size: 16px;
    line-height: 1.7;
  }

  .pillars {
    gap: 14px;
  }

  .pillar {
    padding: 18px;
    gap: 16px;
    border-radius: 14px;
  }

  .pillar-icon {
    width: 42px;
    height: 42px;
  }
}

@media (max-width: 520px) {
  .about {
    padding: 55px 0;
  }

  .section-title {
    font-size: 34px;
  }

  .about-text {
    font-size: 15px;
  }

  .pillar {
    align-items: flex-start;
    padding: 16px;
  }

  .pillar-icon {
    width: 38px;
    height: 38px;
  }

  .pillar-text h4 {
    font-size: 16px;
  }

  .pillar-text p {
    font-size: 14px;
    line-height: 1.5;
  }
}

/* TABLETS */
@media (max-width: 992px) {

  .industries-section {
    padding: 60px 20px;
  }

  .industries-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }

  .industry-box {
    height: 120px;
  }

  .industry-box i {
    font-size: 34px;
  }

  .industries-header h2 {
    font-size: 28px;
  }

  .industries-header p {
    font-size: 14px;
  }
}

/* MOBILE */
@media (max-width: 768px) {

  .industries-section {
    padding: 50px 15px;
  }

  .industries-header h2 {
    font-size: 26px;
  }

  .industries-header p {
    font-size: 14px;
    margin-bottom: 35px;
  }

  .industries-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }

  .industry-box {
    height: 100px;
  }

  .industry-box i {
    font-size: 30px;
  }

  .industry-item h4 {
    font-size: 11px;
    margin-top: 12px;
  }
}

/* SMALL PHONES */
@media (max-width: 480px) {

  .industries-section {
    padding: 40px 12px;
  }

  .industries-grid {
    gap: 12px;
  }

  .industry-box {
    height: 85px;
  }

  .industry-box i {
    font-size: 26px;
  }

  .industry-item h4 {
    font-size: 10px;
    line-height: 1.3;
  }

  .industries-header h2 {
    font-size: 24px;
  }

  .industries-header p {
    font-size: 13px;
  }
}

/* Featured Projects / Industries Header Responsive */
@media (max-width: 768px) {
  .industries-header {
    padding: 0 18px;
    margin-bottom: 35px;
  }

  .industries-header h2 {
    font-size: 26px;
    line-height: 1.2;
  }

  .industries-header p {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 35px;
  }
}

@media (max-width: 480px) {
  .industries-header h2 {
    font-size: 24px;
  }

  .industries-header p {
    font-size: 13px;
    margin-bottom: 28px;
  }
}

.news-dark {
  background: linear-gradient(
    to top,
    rgba(0,0,0,0.88),
    rgba(0,0,0,0.55),
    rgba(0,0,0,0.25)
  );
}

.news-content h3,
.news-content p,
.news-content strong,
.news-date {
  color: #fff !important;
  text-shadow: 0 3px 10px rgba(0,0,0,0.65);
}

.news-content h3 {
  font-size: 28px;
  font-weight: 800;
}

.news-content p {
  font-size: 15px;
  line-height: 1.6;
  font-weight: 500;
}

.news-overlay-card {
  position: relative;
  overflow: hidden;
}

.news-dark {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0,0,0,0.85) 0%,
    rgba(0,0,0,0.55) 40%,
    rgba(0,0,0,0.30) 100%
  );
  z-index: 1;
}

.news-content {
  position: relative;
  z-index: 2;
}

.news-content strong {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: auto !important;
  min-width: unset !important;
  max-width: fit-content !important;
  margin-top: 18px;
  padding: 10px 18px !important;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.16);
  color: #fff !important;
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
  backdrop-filter: blur(6px);
  transition: 0.3s ease;
}

.news-overlay-card:hover .news-content strong {
  background: #b98203;
  color: #fff !important;
  transform: translateX(4px);
}

.company-card-link {
  text-decoration: none;
  color: inherit;
  display: block;
}

.company-card-link:hover {
  text-decoration: none;
  color: inherit;
}