.content-section{
	padding:60px 0 0 0;
}
.content-section .content-text a{
	color:var(--primary);
}
.content-section .content-text a:hover{
	text-decoration:underline;
}
/* ===== CONTENT ===== */

.content-block {
  padding: 50px 0;
text-align:center;
}

.content-block.is-gray {
  background: var(--light-gray);
}

.content-block h2 {
  text-align: center;
  margin-bottom: 25px;
}

/* TEXT */
.content-text p {
  margin-bottom: 14px;
}

/* LINKS */
.content-text a {
  color: #b22222;
  text-decoration: none;
}

.process-section {
  padding: 80px 0;
  background:var(--light-gray);
}

.process-steps {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  position: relative;
	margin-top:50px;
}

/* LINE */
.process-steps::before {
  content: '';
  position: absolute;
  top: 30px;
  left: 0;
  right: 0;
  height: 1px;
  background: #ddd;
  z-index: 0;
}

/* STEP */
.step-item {
  text-align: center;
  position: relative;
  z-index: 1;
}

/* CIRCLE */
.step-circle {
  width: 60px;
  height: 60px;
  background: #b30000;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 15px;
  font-weight: bold;
  font-size: 20px;
}

.step-item h4 {
  font-size: 18px;
  font-weight: 600;
}

/* Industries we placed */
/* SECTION */
.industries-grid-section {
  padding: 60px 0;
  text-align: center;
}


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

/* CARD */
.industry-card {
  position: relative;
  height: 250px;
  border-radius: 12px;
  overflow: hidden;
  display: block;
  text-decoration: none;
}

/* IMAGE */
.industry-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

/* OVERLAY */
.industry-card .overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.3);
  transition: background 0.3s ease;
}

/* TITLE */
.industry-card h3 {
  position: absolute;
  bottom: 18px;
  left: 18px;
  right: 18px;
  color: #fff;
  font-size: 20px;
  font-weight: 600;
  text-align: left;
}

/* HOVER */
.industry-card:hover img {
  transform: scale(1.05);
}

.industry-card:hover .overlay {
  background: rgba(0,0,0,0.5);
}

/* CTA */
.industries-cta {
  margin-top: 25px;
}

.btn-primary {
  background: #c0392b;
  color: #fff;
  padding: 12px 22px;
  border-radius: 6px;
  text-decoration: none;
  display: inline-block;
  font-weight: 600;
}

.btn-primary:hover {
  background: #a93226;
}

.google-map-container{
	padding:30px 0;
}
.map-wrapper {
  width: 100%;
  margin-top: 40px;
  border-radius: 0px;
  overflow: hidden;
}

.map-wrapper iframe {
  width: 100%;
  height: 550px;
  border: 0;
  margin-top:-60px;
}

.emp-split {
  padding: 90px 0;
  background: #fff;
}

/* GRID */
.grid-2 {
  display: grid;
  grid-template-columns: 0.8fr 1fr;
  align-items: center;
}

.split-image {
  display: flex;
	justify-content:center;
}

/* IMAGE */
.split-image img {
  width: 100%;
  height: auto;
  border-radius: 6px;
  display: block;
}

/* CONTENT */
.split-content h2 {
  font-size: 34px;
  color: var(--primary);
  margin-bottom: 15px;
  font-weight: 600;
}

/* REVERSE LAYOUT */
.emp-split.reverse .split-image {
  order: 2;
}

.emp-split.reverse .split-content {
  order: 1;
}

.split-image,
.split-content {
  transform: translateY(30px);
  animation: fadeUp 0.8s ease forwards;
}

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

@media (max-width: 576px) {
  .industries-grid {
    grid-template-columns: 1fr;
  }
}