@charset "UTF-8";
/* CSS Document */

/* GENERAL FOOTER CENTERING */
.footer {
  text-align: center;
}

.footer .top .row {
  justify-content: center;
}

/* LEFT COLUMN (logo) */
.footer .top .col-md-4 {
  text-align: center;
}

/* RIGHT COLUMN (get in touch) */
.footer .top .col-md-8 {
  text-align: center; /* overrides text-end-left */
}

/* Make sure custom class isn't fighting you */
.text-end-left {
  text-align: center !important;
}

/* EMAIL */
.footer .mail {
  text-align: center;
}

/* BOTTOM NAV */
.bottom .links ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  padding: 0;
  margin: 0;
  list-style: none;
}

.bottom .links ul li {
  margin: 5px 15px;
}

/* KEEP ONE LINE ON LARGE SCREENS */
@media (min-width: 1200px) {
  .bottom .links ul {
    flex-wrap: nowrap;
  }
}

/* MOBILE STACK */
@media (max-width: 767px) {
  .bottom .links ul {
    flex-direction: column;
    align-items: center;
  }

  .bottom .links ul li {
    margin: 8px 0;
  }
}
.bottom .links ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center; /* keeps everything centered */
  padding: 0;
  margin: 0;
  list-style: none;
}

.bottom .links ul li {
  margin: 5px 15px;
}

/* LARGE SCREENS — all in one line */
@media (min-width: 1200px) {
  .bottom .links ul {
    flex-wrap: nowrap;
    justify-content: center;
  }
}


/* SMALL SCREENS — clean centered stack */
@media (max-width: 767px) {
  .bottom .links ul {
    flex-direction: column;
    align-items: center;
  }

  .bottom .links ul li {
    margin: 8px 0;
  }
}

#industrial-piping,
#materials,
#maintenance,
#skids,
#pump-valve {
  scroll-margin-top: 120px;
}

.bg-orange{
    background-color: rgba(251,124,0,1.00);
    color: #fff !important;
}

.service-card {
  background: #fff;
  border-radius: 12px;
  padding: 30px;
  height: 100%;
  transition: all 0.3s ease;
  border: 1px solid #eee;
    text-align: center;
    
}

.service-text {
  font-size: 18px;
  line-height: 1.8;
  font-weight: 500;
  color: #444;
  margin-bottom: 20px;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.08);
}

.service-icon {
  font-size: 32px;
  margin-bottom: 15px;
  color: rgba(251,124,0,1.00) !important; /* adjust to your brand */
}

.section-title p{
  margin-bottom: 40px;
    color: rgba(251,124,0,1.00);
    text-transform: none !important;
}

.rounded-img {
  border-radius: 16px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.1);
  width: 100%;
}

.image-wrapper {
  overflow: hidden;
  border-radius: 16px;
}

/* =========================
   INDUSTRIES HERO BANNER
========================= */

.industries-banner h2 {
  font-size: 48px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 15px;
}

.industries-banner h5 {
  font-weight: 400;
  color: rgba(255,255,255,0.85);
  margin-bottom: 20px;
}

/* centered constrained text */
.industries-banner .hero-text {
  font-size: 18px;
  font-weight: 500;
  line-height: 1.8;
  color: #fff;
  max-width: 650px;
  margin: 0 auto;
}

/* =========================
   INDUSTRIES PAGE HEADING SECTION
========================= */

.industries-page .industries-hero h2 {
  font-size: px;
  font-weight: 400;
}

.industries-page .industries-hero h6 {
  font-weight: 400;
  color: #777;
}

.industries-page .industries-hero p {
  font-size: 16px;
  line-height: 1.7;
  font-weight: 500;
  color: rgba(255,255,255,0.88);
}

/* =========================
   IMAGE
========================= */

.industries-page .industries-img {
  border-radius: 16px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.1);
  transition: transform 0.4s ease;
}

.industries-page .industries-img:hover {
  transform: scale(1.05);
}

/* =========================
   GRID CARDS
========================= */

.industries-page .industry-card {
  background: #fff;
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  border: 1px solid #eee;
  transition: all 0.3s ease;
  height: 100%;
}

.industries-page .industry-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.08);
}

.industries-page .industry-icon {
  font-size: 30px;
  margin-bottom: 15px;
  color: rgba(251,124,0,1.00);
}
/* GALLERY *//* FORCE CONSISTENT GALLERY SIZE *//* =========================
   INDUSTRIES GALLERY (PAGE-SCOPED)
========================= */

.industries-page .galleryscroll {
  position: relative;
  overflow: hidden;
  width: 100%;
}

/* FORCE FULL WIDTH EDGE-TO-EDGE */
.industries-page .galleryscroll .container-fluid,
.industries-page .galleryscroll .box-right-7 {
  width: 100vw;
  max-width: 100vw;
  padding-left: 0 !important;
  padding-right: 0 !important;
  margin: 0 !important;
}

/* OWL CAROUSEL FIX */
.industries-page .galleryscroll .owl-carousel {
  width: 100vw;
}

/* ITEM WRAPPER */
.industries-page .galleryscroll .item {
  position: relative;
  overflow: hidden;
  border-radius: 0; /* clean industrial edge-to-edge look */
}

/* IMAGE WRAPPER (THIS CONTROLS SIZE) */
.industries-page .galleryscroll .item .img {
  height: 180px; /* smaller, cleaner */
  overflow: hidden;
  position: relative;
}

/* IMAGE FIT */
.industries-page .galleryscroll .item .img > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

/* HOVER ZOOM */
.industries-page .galleryscroll .item:hover .img > img {
  transform: scale(1.05);
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 768px) {
  .industries-page .galleryscroll .item .img {
    height: 200px;
  }
}


/* =========================
   CERTIFICATIONS PAGE
========================= */

.certifications-hero h2 {
  font-size: 48px;
  font-weight: 600;
  color: #fff;
}

/* INTRO TEXT */
.certifications-intro .intro-text {
  font-size: 18px;
  line-height: 1.8;
  font-weight: 500;
  color: #444;
  max-width: 900px;
  margin: 0 auto;
}

/* LIST SECTION */
.certifications-split h4 {
  font-size: 28px;
  font-weight: 600;
}

/* BULLET LIST */
.cert-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.cert-list li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 12px;
  font-size: 16px;
  line-height: 1.6;
}

/* CUSTOM BULLET */
.cert-list li:before {
  content: "✔";
  position: absolute;
  left: 0;
  color: rgba(251,124,0,1);
  font-weight: bold;
}

/* IMAGE */
.cert-image-wrapper {
  padding: 10px;
}

.cert-image {
  border-radius: 16px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.1);
  transition: transform 0.4s ease;
object-fit: cover;
    aspect-ratio: 1/1;
}



/* RESPONSIVE */
@media (max-width: 991px) {
  .certifications-hero h2 {
    font-size: 34px;
  }

  .certifications-split {
    text-align: center;
  }

  .cert-list {
    text-align: left;
    display: inline-block;
  }
}


/* =========================
   ABOUT PAGE
========================= */

/* HERO */
.about-hero h2 {
  font-size: 48px;
  font-weight: 600;
  color: #fff;
}

.about-hero h5 {
  color: rgba(255,255,255,0.85);
  font-weight: 400;
  margin-top: 10px;
}

/* INTRO */
.about-intro .intro-text {
  font-size: 18px;
  font-weight: 500;
  line-height: 1.8;
  color: #444;
  max-width: 900px;
  margin: 0 auto;
}

/* BODY TEXT */
.about-text {
  font-size: 16px;
  line-height: 1.8;
  color: rgba(251,124,0,1);
  margin-bottom: 18px;
    font-weight: 500;
}

/* IMAGE */
.about-image {
  border-radius: 16px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.12);
  transition: transform 0.4s ease;
}

.about-image:hover {
  transform: scale(1.03);
}

/* FINAL SECTION */
.about-final {
  font-size: 18px;
  font-weight: 600;
  line-height: 1.9;
  color: #333;
  max-width: 950px;
  margin: 0 auto;
}

/* RESPONSIVE */
@media (max-width: 991px) {

  .about-hero h2 {
    font-size: 34px;
  }

  .about-intro,
  .about-content {
    text-align: center;
  }

  .about-content .row {
    flex-direction: column-reverse;
  }
}

/* =========================
   EMPLOYMENT PAGE
========================= */

/* HERO */
.employment-hero h2 {
  font-size: 48px;
  font-weight: 600;
  color: #fff;
}

.employment-hero h5 {
  color: rgba(255,255,255,0.85);
  font-weight: 400;
  margin-top: 10px;
}

/* TEXT */
.employment-text {
  font-size: 23px;
  line-height: 1.8;
  font-weight: 500;
  color: rgba(251,124,0,1);
  margin-bottom: 20px;
}

/* CTA BOX */
.cta-box {
  background: #fff;
  border-radius: 16px;
  padding: 45px 35px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.08);
  border: 1px solid #eee;
}

/* CTA TITLE */
.cta-box h4 {
  font-size: 26px;
  font-weight: 600;
  margin-bottom: 10px;
}

/* CTA TEXT */
.cta-box p {
  font-size: 16px;
  color: #666;
  margin-bottom: 25px;
}

/* BUTTON */
.btn-apply {
  display: inline-block;
  padding: 12px 26px;
  background: rgba(251,124,0,1);
  color: #fff;
  font-weight: 600;
  border-radius: 8px;
  text-decoration: none;
  transition: 0.3s ease;
}

.btn-apply:hover {
  background: #d96500;
  transform: translateY(-2px);
}

/* RESPONSIVE */
@media (max-width: 991px) {
  .employment-hero h2 {
    font-size: 34px;
  }

  .employment-text {
    text-align: center;
  }
}

.footer .logo-img {
  text-align: center;
}

.footer .logo-img img {
  display: block;
  margin: 0 auto;
}
.footer .top .item {
  display: flex;
  flex-direction: column;
  align-items: center;
}


/* Dropdown menu */
.navbar .dropdown-menu {
    background: #F9F9F9 !important;
    border: none;
    border-radius: 12px;
    padding: 10px 0;
}

/* Dropdown links */
.navbar .dropdown-menu .dropdown-item {
    font-size: 8px;
    font-weight: 500;
    color: #333;
    padding: 10px 18px;
    transition: all 0.2s ease;
}

/* Hover effect */
.navbar .dropdown-menu .dropdown-item:hover {
    background: #e9e9e9;
    color: #000;
}

/* Mobile styling */
@media (max-width: 991px) {
    
    .navbar .dropdown-menu {
        background: #f7f7f7;
        margin-top: 5px;
        border-radius: 8px;
    }

    .navbar .dropdown-menu .dropdown-item {
        font-size: 13px;
        padding-left: 25px;
    }
}
.navbar .dropdown-toggle::after {
    margin-left: 8px;
    vertical-align: middle;
}