/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;1,400&family=Outfit:wght@300;400;500;600;700;800&display=swap');

/* CSS Variables for design tokens — IronClad Logo Palette */
:root {
  /* ─── Primary: Dark Industrial Charcoal & Black ─── */
  --primary-color: #0f1115;
  /* deep, near-black charcoal (from logo background) */
  --primary-hover: #1a1d24;
  /* slightly lighter hover state */
  --primary-dark: #000000;
  /* pure black */

  /* ─── Brand Blue: Electric Cyan/Blue (from "ENGINEERING" & cube core) ─── */
  --brand-blue: #0073e6;
  /* vibrant electric blue core */
  --brand-blue-hover: #338fff;
  /* brighter electric blue for interaction */
  --brand-blue-light: #e6f1fe;
  /* very soft blue tint for light sections/cards */

  /* ─── Accent: Chrome & Steel Silver (from "IronClad" text & outer cube) ─── */
  --accent-steel: #8a95a5;
  /* mid-tone metallic steel */
  --accent-steel-light: #cbd5e1;
  /* light chrome silver */
  --chrome-highlight: #f8fafc;
  /* bright silver/white panel highlight */

  /* ─── Text Colors ─── */
  --text-dark: #0f1115;
  /* deep charcoal for headings on light backgrounds */
  --text-body: #334155;
  /* clean slate body copy */
  --text-light: #64748b;
  /* muted captions and subtitles */
  --text-muted: #94a3b8;
  /* placeholders and borders */
  --text-on-dark: #ffffff;
  /* crisp white for text on dark/black backgrounds */

  /* ─── Backgrounds ─── */
  --bg-white: #ffffff;
  --bg-light: #f4f6f9;
  /* cool, clean steel-tinted light background */
  --bg-mid: #e2e8f0;
  /* dividers and subtle card backgrounds */
  --bg-footer: #0f1115;
  /* matches the dark logo background */
  --bg-footer-card: #000000;
  /* solid black accents */

  /* ─── Borders ─── */
  --border-color: #cbd5e1;
  /* subtle metallic silver border */
  --border-strong: #94a3b8;
  /* stronger structural divider */

  /* ─── Typography ─── */
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Montserrat', sans-serif;

  /* ─── Layout & Effects (Tuned to dark charcoal/black shadows) ─── */
  --transition-speed: 0.3s;
  --max-width: 1200px;
  --shadow-sm: 0 2px 6px rgba(15, 17, 21, 0.15);
  --shadow-md: 0 6px 18px rgba(15, 17, 21, 0.25);
  --shadow-lg: 0 14px 36px rgba(15, 17, 21, 0.35);
  --border-radius: 4px;
}

/* Reset and Global Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--font-body);
  color: var(--text-dark);
  line-height: 1.6;
  background-color: var(--bg-white);
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
  transition: all var(--transition-speed) ease;
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

input,
textarea,
button {
  font-family: inherit;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  outline: none;
}

/* Helper Class for container layout */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 20px;
}

/* Flex utilities */
.flex {
  display: flex;
}

.flex-between {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.flex-center {
  display: flex;
  justify-content: center;
  align-items: center;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

/* ==================== HEADER STYLING — PROFESSIONAL REDESIGN ==================== */

/* ── Strip 1: Slim dark top bar (address + socials) ── */
.top-bar {
  background-color: var(--primary-color);
  padding: 7px 0;
  font-size: 0.78rem;
  color: #8ea8c3;
  font-weight: 500;
  letter-spacing: 0.2px;
}

.top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.top-bar-left {
  display: flex;
  align-items: center;
  gap: 7px;
}

.top-bar-left svg {
  color: var(--brand-blue);
  flex-shrink: 0;
}

.top-bar-right {
  display: flex;
  align-items: center;
  gap: 14px;
}

.top-bar-right a {
  color: #6a8aaa;
  display: flex;
  align-items: center;
  transition: color var(--transition-speed);
}

.top-bar-right a:hover {
  color: var(--brand-blue);
}

/* ── Strip 2: Main header — logo + nav + CTA ── */
.main-header {
  background-color: #1f1d1d;
  border-bottom: 3px solid var(--brand-blue);
  box-shadow: 0 2px 20px rgba(15, 17, 21, 0.30);
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: all var(--transition-speed) ease;
}

.main-header.scrolled {
  background-color: rgba(31, 29, 29, 0.95);
  backdrop-filter: blur(8px);
  box-shadow: 0 4px 25px rgba(0, 0, 0, 0.5);
}

.main-header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 72px;
  gap: 0;
  transition: height var(--transition-speed) ease;
}

.main-header.scrolled .container {
  height: 60px;
}

/* ── Logo image ── */
.logo-container {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  text-decoration: none;
}

.logo-img {
  height: 100px;
  width: auto;
  display: block;
  object-fit: contain;
  transition: all var(--transition-speed) ease;
}

.main-header.scrolled .logo-img {
  height: 75px;
}

.logo-img:hover {
  opacity: 0.88;
}

/* Legacy SVG logo fallback (hidden when image is present) */
.logo-icon {
  display: none;
}

.logo-text {
  display: none;
}

/* ── Inline navigation (inside main-header) ── */
.nav-bar {
  background: transparent;
  position: static;
  flex: 1;
  display: flex;
  justify-content: flex-end;
  align-items: stretch;
}

.nav-bar .container {
  /* override: nav-bar container is not used in new design */
  display: contents;
}

.nav-links {
  display: flex;
  align-items: stretch;
  height: 72px;
  margin: 0;
  padding: 0;
}

.nav-links li {
  height: 100%;
  display: flex;
  align-items: stretch;
}

.nav-links a {
  display: flex;
  align-items: center;
  height: 100%;
  padding: 0 20px;
  color: #d8e0ea;
  /* light silver-white — visible on dark header */
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  position: relative;
  white-space: nowrap;
  transition: color var(--transition-speed);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 12px;
  right: 12px;
  height: 3px;
  background-color: var(--accent-orange);
  border-radius: 2px 2px 0 0;
  transform: scaleX(0);
  transition: transform var(--transition-speed) ease;
}

.nav-links a:hover {
  color: var(--brand-blue-hover);
  /* bright electric blue on hover */
}

.nav-links a:hover::after,
.nav-links li.active a::after {
  transform: scaleX(1);
  /* bright white underline bar on dark bg */
}

.nav-links li.active a {
  color: var(--brand-blue-hover);
  /* #338fff — bright cobalt blue from logo cube */
  font-weight: 700;
}

/* ── Get A Quote CTA button ── */
.quote-btn {
  background: linear-gradient(135deg, var(--brand-blue), var(--brand-blue-hover));
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  padding: 0 28px;
  margin-left: 16px;
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  white-space: nowrap;
  border-radius: 2px;
  height: 42px;
  align-self: center;
  transition: all var(--transition-speed) ease;
  box-shadow: 0 3px 10px rgba(26, 64, 128, 0.30);
}

.quote-btn:hover {
  background: linear-gradient(135deg, var(--brand-blue-hover), var(--brand-blue-light));
  box-shadow: 0 5px 18px rgba(26, 64, 128, 0.40);
  transform: translateY(-1px);
}

/* ── Mobile hamburger ── */
.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 26px;
  height: 18px;
  cursor: pointer;
  margin-left: 18px;
  flex-shrink: 0;
}

.menu-toggle span {
  display: block;
  height: 2.5px;
  width: 100%;
  background-color: var(--primary-color);
  border-radius: 3px;
  transition: all var(--transition-speed);
}

/* ==================== HOME PAGE STYLING ==================== */

/* Hero Section */
.hero-section {
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 550px;
  display: flex;
  align-items: center;
  color: #ffffff;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, rgba(8, 24, 57, 0.9) 0%, rgba(8, 24, 57, 0.5) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 650px;
  padding-bottom: 50px;
}

.hero-content h2 {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 800;
  color: var(--brand-blue);
  text-transform: uppercase;
  letter-spacing: 1px;
  line-height: 1.1;
  margin-bottom: 5px;
}

.hero-content .subtitle {
  font-style: italic;
  font-size: 1.1rem;
  font-weight: 500;
  color: #d1d5db;
  margin-bottom: 25px;
}

.hero-content h3 {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  line-height: 1.3;
}

.hero-content h3 span {
  color: var(--accent-orange);
}

/* Overlapping Let's Work Together Box */
.cta-overlap-card {
  background-color: var(--primary-color);
  border-bottom: 5px solid var(--accent-orange);
  padding: 40px;
  margin-top: -60px;
  position: relative;
  z-index: 2;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-lg);
  color: #ffffff;
  height: 250px;
}

.cta-overlap-card .flex-between {
  gap: 30px;
}

.cta-left h4 {
  font-size: 0.9rem;
  font-style: italic;
  font-weight: 500;
  color: var(--brand-blue);
  margin-bottom: 5px;
}

.cta-left h2 {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 800;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 15px;
  line-height: 1.2;
}

.cta-left a {
  display: inline-block;
  color: #ffffff;
  font-weight: 600;
  font-style: italic;
  font-size: 0.9rem;
  border-bottom: 2px solid var(--brand-blue);
  padding-bottom: 3px;
}

.cta-left a:hover {
  color: var(--brand-blue);
  border-color: var(--accent-orange);
}

.cta-right svg {
  width: 90px;
  height: 90px;
  fill: #ffffff;
  opacity: 0.9;
}

/* Core Values / Features Section */
.features-section {
  padding: 80px 0;
  background-color: var(--bg-white);
}

.feature-card {
  text-align: center;
  padding: 40px 20px;
  border-radius: var(--border-radius);
  transition: all var(--transition-speed) ease;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.feature-icon {
  margin: 0 auto 25px;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--primary-color);
  font-size: 2.2rem;
  transition: all var(--transition-speed) ease;
}

.feature-icon svg {
  width: 45px;
  height: 45px;
  fill: var(--brand-blue);
}

.feature-card:hover .feature-icon svg {
  transform: scale(1.1);
  fill: var(--accent-orange);
}

.feature-card h3 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 15px;
  letter-spacing: 1px;
}

.feature-card p {
  color: var(--text-light);
  font-size: 0.85rem;
  font-weight: 500;
  line-height: 1.7;
}

/* About Us Highlight Section */
.about-highlight-section {
  padding: 80px 0;
  background-color: var(--primary-color);
}

.about-highlight-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 50px;
  align-items: center;
}

.about-highlight-image img {
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-md);
  width: 100%;
  max-height: 450px;
  object-fit: cover;
}

.about-highlight-content h2 {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary-color);
  text-transform: uppercase;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 15px;
}

.about-highlight-content h2::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 80px;
  height: 3px;
  background-color: var(--brand-blue);
}

.about-highlight-content p {
  color: var(--text-light);
  font-size: 0.95rem;
  margin-bottom: 30px;
}

.read-more-link {
  display: inline-block;
  color: var(--primary-color);
  font-weight: 700;
  font-style: italic;
  font-size: 0.9rem;
  border-bottom: 2px solid var(--accent-orange);
  padding-bottom: 4px;
}

.read-more-link:hover {
  color: var(--accent-orange);
  transform: translateX(5px);
}

/* Recent Projects Section */
.recent-projects-section {
  padding: 80px 0;
  background-color: var(--bg-white);
  /* Deep navy to match logo */
  color: #0f0f0f;
}

.section-header-row {
  margin-bottom: 40px;
}

.section-header-row h3 {
  font-size: 0.85rem;
  font-style: italic;
  color: var(--brand-blue);
  font-weight: 500;
  margin-bottom: 5px;
}

.section-header-row h2 {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.view-all-link {
  color: #0f0f0f;
  font-weight: 700;
  font-style: italic;
  font-size: 0.9rem;
  border-bottom: 2px solid var(--brand-blue);
  padding-bottom: 4px;
}

.view-all-link:hover {
  color: var(--brand-blue);
  transform: translateX(5px);
}

/* Standard Project Card Grid */
.project-card {
  position: relative;
  border-radius: var(--border-radius);
  overflow: hidden;
  height: 320px;
  box-shadow: var(--shadow-md);
}

.project-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-speed) ease;
}

.project-card:hover img {
  transform: scale(1.08);
}

.project-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: transparent;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 30px;
  opacity: 0;
  transition: all var(--transition-speed) ease;
}

.project-card:hover .project-overlay {
  background: linear-gradient(to top, rgba(248, 90, 22, 0.95) 0%, rgba(8, 24, 57, 0.4) 100%);
  opacity: 1;
}

.project-overlay h3 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  line-height: 1.3;
}

.project-arrow-btn {
  position: absolute;
  top: 25px;
  left: 25px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: var(--primary-color);
  color: #ffffff;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1rem;
  opacity: 0.8;
  transition: all var(--transition-speed);
}

.project-arrow-btn svg {
  width: 18px;
  height: 18px;
  fill: #ffffff;
}

.project-card:hover .project-arrow-btn {
  opacity: 1;
  background-color: #ffffff;
}

.project-card:hover .project-arrow-btn svg {
  fill: var(--accent-orange);
}

/* ==================== PAGE BANNER ==================== */
.page-banner {
  background-size: cover;
  background-position: center;
  position: relative;
  padding: 80px 0;
  color: #ffffff;
}

.page-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, rgba(8, 24, 57, 0.95), rgba(8, 24, 57, 0.7));
}

.page-banner .container {
  position: relative;
  z-index: 1;
}

.page-banner h1 {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.page-banner p {
  font-size: 1rem;
  font-weight: 500;
  color: #d1d5db;
  margin-top: 5px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* ==================== ABOUT US PAGE ==================== */
.about-section {
  padding: 80px 0;
}

.about-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: flex-start;
}

.about-images-stack {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.about-img-box {
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.about-img-box img {
  width: 100%;
  max-height: 280px;
  object-fit: cover;
}

.about-text h2 {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary-color);
  text-transform: uppercase;
  margin-bottom: 25px;
  position: relative;
  padding-bottom: 15px;
}

.about-text h2::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 60px;
  height: 3px;
  background-color: var(--accent-orange);
}

.about-text p {
  margin-bottom: 20px;
  color: var(--text-light);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* Team section */
.team-section {
  padding: 80px 0;
  background-color: var(--bg-light);
}

.team-section .section-title {
  text-align: center;
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--primary-color);
  margin-bottom: 50px;
}

.team-container {
  display: flex;
  justify-content: center;
}

.team-card {
  background-color: var(--bg-white);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-md);
  overflow: hidden;
  max-width: 380px;
  text-align: center;
}

.team-image {
  height: 380px;
  overflow: hidden;
}

.team-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-speed);
}

.team-card:hover .team-image img {
  transform: scale(1.05);
}

.team-info {
  padding: 25px;
}

.team-info h3 {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--primary-color);
  margin-bottom: 5px;
}

.team-info p {
  color: var(--brand-blue);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Client/Partner Logos Banner */
.clients-section {
  padding: 60px 0;
  background-color: var(--bg-white);
  border-top: 1px solid var(--border-color);
}

.clients-logos-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 30px;
}

.client-logo-item {
  flex: 1;
  min-width: 120px;
  display: flex;
  justify-content: center;
  opacity: 0.7;
  transition: opacity var(--transition-speed);
}

.client-logo-item:hover {
  opacity: 1;
}

.client-logo-item svg,
.client-logo-item img {
  max-height: 50px;
  max-width: 130px;
}

/* ==================== SERVICES PAGE ==================== */
.services-grid-section {
  padding: 80px 0;
  background-color: var(--bg-light);
}

.service-item-card {
  background-color: var(--bg-white);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-sm);
  padding: 40px 30px;
  border-bottom: 4px solid transparent;
  transition: all var(--transition-speed) ease;
}

.service-item-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: var(--accent-orange);
}

.service-item-icon {
  width: 60px;
  height: 60px;
  background-color: #f0f7fd;
  border-radius: var(--border-radius);
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 25px;
  color: var(--brand-blue);
}

.service-item-icon svg {
  width: 32px;
  height: 32px;
  fill: var(--brand-blue);
}

.service-item-card:hover .service-item-icon {
  background-color: var(--primary-color);
}

.service-item-card:hover .service-item-icon svg {
  fill: #ffffff;
}

.service-item-card h3 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 15px;
  color: var(--primary-color);
}

.service-item-card p {
  color: var(--text-light);
  font-size: 0.85rem;
  line-height: 1.7;
}

/* ==================== PROJECTS PAGE ==================== */
.projects-section-container {
  padding: 80px 0;
  background-color: var(--bg-white);
}

.projects-section-container .section-title {
  text-align: center;
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 800;
  text-transform: uppercase;
  color: #333d4b;
  margin-bottom: 50px;
  letter-spacing: 1px;
}

/* Slider layout styling */
.slider-outer-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  gap: 20px;
}

.projects-grid-slider {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  width: 100%;
  overflow: hidden;
  transition: all 0.5s ease;
}

.slider-arrow {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background-color: var(--primary-color);
  color: #ffffff;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: var(--shadow-sm);
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  transition: all var(--transition-speed);
}

.slider-arrow svg {
  width: 20px;
  height: 20px;
  fill: #ffffff;
}

.slider-arrow:hover {
  background-color: var(--accent-orange);
  transform: translateY(-50%) scale(1.05);
}

.slider-arrow.left {
  left: -20px;
}

.slider-arrow.right {
  right: -20px;
}

/* Timeline Quote Slider Section */
.testimonials-timeline-section {
  padding: 80px 0;
  background-color: var(--bg-light);
}

.timeline-outer-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
}

.quote-decor {
  font-family: 'Outfit', sans-serif;
  font-size: 8rem;
  color: var(--primary-color);
  opacity: 0.9;
  line-height: 1;
  user-select: none;
}

.timeline-content-slider {
  flex: 1;
  overflow: hidden;
  min-height: 250px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.timeline-slide-wrapper {
  display: flex;
  transition: transform 0.5s ease-in-out;
  width: 100%;
}

.timeline-slide {
  min-width: 100%;
  padding: 0 10px;
  text-align: center;
}

.timeline-slide h3 {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--primary-color);
  margin-bottom: 10px;
}

.timeline-slide .date {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--accent-orange);
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.timeline-slide p {
  font-size: 0.95rem;
  color: var(--text-light);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}

/* Timeline Controls styling */
.timeline-controls {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-top: 30px;
}

.timeline-arrow {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  background-color: var(--bg-white);
  color: var(--primary-color);
  border: 1px solid var(--border-color);
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all var(--transition-speed);
}

.timeline-arrow svg {
  width: 16px;
  height: 16px;
  fill: var(--primary-color);
}

.timeline-arrow:hover {
  background-color: var(--primary-color);
  color: #ffffff;
}

.timeline-arrow:hover svg {
  fill: #ffffff;
}

/* ==================== CONTACTS PAGE ==================== */
.contacts-section-container {
  padding: 80px 0;
}

/* Map items layout */
.maps-flex-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin-bottom: 60px;
}

.map-card-box {
  text-align: center;
}

.map-iframe-container {
  height: 300px;
  margin-bottom: 20px;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-color);
}

.map-iframe-container iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.map-info h3 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--text-dark);
  margin-bottom: 5px;
}

.map-info p {
  color: var(--text-light);
  font-size: 0.95rem;
}

/* Dark Container for Mail Form and details */
.contact-form-overlay-card {
  background-color: #2b2e35;
  padding: 60px 20px;
  margin: 0 -20px;
  position: relative;
}

@media (min-width: 1200px) {
  .contact-form-overlay-card {
    margin: 0 calc(-50vw + 50%);
    padding: 80px calc(50vw - 600px + 20px);
  }
}

.contact-form-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  background-color: #ffffff;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}

.form-info-side {
  padding: 60px 50px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  color: var(--text-dark);
}

.form-info-side h2 {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 15px;
  color: #1a1d24;
}

.form-info-side p {
  color: var(--text-light);
  margin-bottom: 30px;
  line-height: 1.6;
  font-size: 0.95rem;
}

.form-email-box {
  display: flex;
  align-items: center;
  gap: 20px;
  background-color: transparent;
  border: none;
  padding: 0;
}

.form-email-icon svg {
  width: 50px;
  height: 50px;
}

.form-email-details h4 {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--text-dark);
  margin-bottom: 3px;
}

.form-email-details p {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-light);
}

/* Input Form Side */
.form-input-side {
  padding: 60px 50px;
  background-color: transparent;
  color: var(--text-dark);
}

.form-group-input {
  margin-bottom: 20px;
}

.form-group-input input,
.form-group-input textarea {
  width: 100%;
  padding: 15px;
  border: 1px solid var(--border-color);
  background-color: var(--bg-light);
  border-radius: var(--border-radius);
  outline: none;
  font-size: 0.85rem;
  font-weight: 500;
  transition: all var(--transition-speed);
}

.form-group-input input:focus,
.form-group-input textarea:focus {
  border-color: var(--primary-color);
  background-color: #ffffff;
  box-shadow: 0 0 0 3px rgba(11, 26, 63, 0.05);
}

.form-group-input textarea {
  min-height: 130px;
  resize: vertical;
}

.form-submit-btn {
  background-color: var(--primary-color);
  color: #ffffff;
  padding: 15px 35px;
  font-weight: 700;
  font-style: italic;
  font-size: 0.9rem;
  border-radius: var(--border-radius);
  transition: all var(--transition-speed);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.form-submit-btn:hover {
  background-color: var(--accent-orange);
  transform: translateY(-2px);
}

/* ==================== FOOTER STYLING ==================== */
.main-footer {
  background-color: var(--bg-footer);
  color: #ffffff;
  padding-top: 80px;
}

.footer-top-row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
  gap: 30px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

/* Address boxes styling */
.footer-addr-box {
  background-color: var(--bg-footer-card);
  padding: 30px 20px;
  border-radius: var(--border-radius);
  font-size: 0.85rem;
  color: #cbd5e1;
  font-weight: 500;
  line-height: 1.6;
  height: 100%;
}

.footer-column-title {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 800;
  text-transform: uppercase;
  color: #ffffff;
  margin-bottom: 25px;
  letter-spacing: 0.5px;
}

.footer-contact-details {
  font-size: 0.85rem;
}

.footer-contact-details li {
  margin-bottom: 15px;
  font-weight: 500;
  color: #cbd5e1;
}

.footer-contact-details strong {
  color: #ffffff;
}

.footer-links-list li {
  margin-bottom: 12px;
}

.footer-links-list a {
  font-size: 0.85rem;
  color: #cbd5e1;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-links-list a::before {
  content: '▶';
  font-size: 0.6rem;
  color: var(--brand-blue);
  transition: transform var(--transition-speed);
}

.footer-links-list a:hover {
  color: var(--brand-blue);
  padding-left: 5px;
}

.linkedin-btn {
  margin-top: 20px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 32px;
  height: 32px;
  background-color: #0077b5;
  color: #ffffff;
  border-radius: 4px;
}

.linkedin-btn svg {
  width: 18px;
  height: 18px;
  fill: #ffffff;
}

/* Footer Bottom Bar */
.footer-bottom-bar {
  padding: 25px 0;
  background-color: var(--bg-footer-card);
  font-size: 0.75rem;
  color: #94a3b8;
  font-weight: 500;
}

.footer-bottom-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
}

/* ==================== RESPONSIVE DESIGN ==================== */

@media (max-width: 1024px) {
  .grid-3 {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-top-row {
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
  }

  .projects-grid-slider {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-row {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

@media (max-width: 768px) {
  .main-header .container {
    height: 62px;
  }

  .logo-img {
    height: 42px;
  }

  .nav-bar {
    position: static;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    width: 100%;
    background-color: #ffffff;
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 999;
    border-top: 3px solid var(--primary-color);
    box-shadow: 0 8px 24px rgba(13, 27, 46, 0.12);
    height: auto;
  }

  .nav-links.active {
    display: flex;
  }

  .nav-links li {
    width: 100%;
    height: auto;
  }

  .nav-links a {
    padding: 14px 24px;
    width: 100%;
    height: auto;
    color: var(--text-dark);
    border-bottom: 1px solid var(--border-color);
  }

  .nav-links a::after {
    display: none;
  }

  .nav-links li.active a {
    background-color: var(--bg-light);
    color: var(--accent-orange);
  }

  .quote-btn {
    display: none;
  }

  .menu-toggle {
    display: flex;
  }

  .grid-2,
  .grid-3 {
    grid-template-columns: 1fr;
  }

  .about-highlight-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .hero-content h2 {
    font-size: 2.2rem;
  }

  .hero-content h3 {
    font-size: 1.2rem;
  }

  .cta-overlap-card {
    padding: 25px;
    margin-top: -30px;
  }

  .cta-overlap-card .flex-between {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }

  .cta-right {
    display: none;
  }

  .footer-top-row {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .projects-grid-slider {
    grid-template-columns: 1fr;
  }

  .slider-arrow {
    display: none;
    /* Let users swipe/scroll or hide arrows */
  }

  .quote-decor {
    display: none;
    /* Simplify on mobile */
  }

  .maps-flex-row {
    grid-template-columns: 1fr;
  }

  .contact-form-grid {
    grid-template-columns: 1fr;
  }

  .form-info-side {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }
}

/* ==================== SERVICES PAGE (WHAT WE DO) ==================== */

/* Page banner — taller for services, sits on industrial silo image */
.services-page-banner {
  background-size: cover;
  background-position: center top;
  position: relative;
  padding: 130px 0 110px;
  color: #ffffff;
}

.services-page-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right,
      rgba(13, 27, 46, 0.80) 0%,
      rgba(13, 27, 46, 0.55) 100%);
}

.services-page-banner .container {
  position: relative;
  z-index: 1;
}

.services-page-banner h1 {
  font-family: var(--font-heading);
  font-size: 3.2rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: #ffffff;
}

/* WHAT WE DO intro section */
.what-we-do-section {
  padding: 70px 0 60px;
  background-color: var(--bg-white);
}

.what-we-do-section .wwd-title {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 900;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--text-dark);
  margin-bottom: 18px;
}

.what-we-do-section .wwd-subtitle {
  text-align: center;
  font-size: 0.92rem;
  color: var(--text-light);
  font-style: italic;
  font-weight: 500;
  max-width: 740px;
  margin: 0 auto 55px;
  line-height: 1.7;
}

/* 2-column grid for service categories */
.services-categories-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px 60px;
}

/* Individual service category block */
.service-category {
  padding: 0 0 20px;
}

/* Category heading with flanking orange lines */
.service-category-title {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 22px;
}

.service-category-title::before,
.service-category-title::after {
  content: '';
  flex: 0 0 50px;
  height: 2px;
  background-color: var(--accent-orange);
  border-radius: 2px;
}

.service-category-title span {
  font-family: var(--font-heading);
  font-size: 0.92rem;
  font-weight: 800;
  text-transform: capitalize;
  color: var(--brand-blue);
  white-space: nowrap;
  letter-spacing: 0.3px;
}

/* Bullet list with ➤ arrow prefix */
.service-bullet-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.service-bullet-list li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 0.88rem;
  color: var(--text-dark);
  font-weight: 500;
  line-height: 1.55;
  margin-bottom: 10px;
  padding-left: 4px;
}

.service-bullet-list li::before {
  content: '➤';
  font-size: 0.8rem;
  color: var(--text-dark);
  margin-top: 3px;
  flex-shrink: 0;
}

/* Blue hyperlink highlights inside bullet items */
.service-bullet-list li a,
.service-bullet-list li .hl {
  color: var(--brand-blue);
  font-weight: 600;
  text-decoration: none;
  transition: color var(--transition-speed);
}

.service-bullet-list li a:hover,
.service-bullet-list li .hl:hover {
  color: var(--accent-orange);
}

/* Divider between grid rows */
.services-row-divider {
  grid-column: 1 / -1;
  border: none;
  border-top: 1px solid var(--border-color);
  margin: 5px 0;
}

/* Responsive: stack to single column on mobile */
@media (max-width: 768px) {
  .services-categories-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .services-page-banner h1 {
    font-size: 2.2rem;
  }

  .what-we-do-section .wwd-title {
    font-size: 1.5rem;
  }
}

/* ==================== ANIMATIONS ==================== */
.reveal {
  opacity: 1;
  transform: translateY(40px);
  transition: all 0.8s cubic-bezier(0.5, 0, 0, 1);
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger delay for multiple cards in grid */
.grid-3 .reveal:nth-child(1),
.projects-grid-slider .reveal:nth-child(1),
.team-container .reveal:nth-child(1) {
  transition-delay: 0.1s;
}

.grid-3 .reveal:nth-child(2),
.projects-grid-slider .reveal:nth-child(2),
.team-container .reveal:nth-child(2) {
  transition-delay: 0.25s;
}

.grid-3 .reveal:nth-child(3),
.projects-grid-slider .reveal:nth-child(3),
.team-container .reveal:nth-child(3) {
  transition-delay: 0.4s;
}