/* Main Menu */


.dropdown {
    position: relative;
}

.dropdown-content {
    display: none;
    position: absolute;
    top: 0;
    right: 100%; /* New: left side */
    background-color: white;
    border: 1px solid #ccc;
    box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.1);
    flex-direction: column;
    /* white-space: nowrap; */
    min-width: 220px;
    z-index: 1001;
}

.dropdown:hover .dropdown-content {
    display: flex;
}

.dropdown-content a {
    padding: 12px 18px;
    font-size: 1rem;
    color: #333;
    text-decoration: none;
    border-bottom: 1px solid #eee;
}

.dropdown-content a:hover {
    background-color: #f9f9f9;
}
.dropdown .has-submenu::after {
    content: " ▼";
    font-size: 0.8em;
}


section.bg-white {
    border-top: 1px solid #ddd;
}

/* ===== Hero Video Section ===== */
.hero-video-section {
    position: relative;
    width: 100vw;
    height: 100vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0;
}

.hero-video-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
    filter: brightness(0.5);
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 1;
    color: #fff;
    max-width: 90%;
    padding: 1rem;
}

.hero-content h1 {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1rem;
}

.hero-content .subtitle {
    font-size: 2rem;
    margin-bottom: 2rem;
}

.hero-button {
    background-color: #1b5e96;
    color: #fff;
    padding: .75rem 2rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color .3s ease;
}

.hero-button:hover {
    background-color: #337FBE;
}



/* img selection */
.services-section {
    background: #f8f9fa;
}

.services-section .service-card {
    position: relative;
    height: 300px;
    overflow: hidden;
    border-radius: .5rem;
}

.services-section .service-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .3s ease;
}

.services-section .service-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    transition: background .3s ease;
}

.services-section .service-card h5 {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    margin: 0;
    text-align: center;
    color: #fff;
    font-size: 1.1rem;
    font-weight: 600;
    z-index: 1;
}

.services-section .service-card:hover img {
    transform: scale(1.05);
}

.services-section .service-card:hover::before {
    background: rgba(0, 0, 0, 0.2);
}


/* about */
.about-section {
    background-color: #1b5e96;
    color: #fff;
}

.about-section h2 {
    font-weight: 700;
    margin-bottom: 1rem;
}

.about-section p {
    line-height: 1.6;
    margin-bottom: 2rem;
}

.about-section .btn-about {
    /* background-color: #1b5e96; */
    background-color: white;
    color: black;
    padding: 0.75rem 2rem;
    font-weight: 600;
    border: none;
    border-radius: 0.5rem;
    transition: background-color 0.3s ease;
    text-decoration: none;
}

.about-section .btn-about:hover {
    background-color: #8fccff;
}

.about-section .about-img {
    width: 100%;
    border-radius: 0.5rem;
    object-fit: cover;
}

/* partners */
.partners-section {
    background: #fff;
    padding: 4rem 0;
}

.partners-section .partner-subtitle {
    text-transform: uppercase;
    font-size: 0.85rem;
    color: #666;
    margin-bottom: 0.5rem;
}

.partners-section .partner-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 2.5rem;
}

.partners-section .logo-cell {
    border: 1px solid #e0e0e0;
}

.partners-section .logo-wrapper {
    padding: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.partners-section .logo-wrapper img {
    max-width: 100%;
    max-height: 200px;
    object-fit: contain;
}

/* passion */
.social-hero {
    position: relative;
    width: 100vw;
    margin-left: 50%;
    transform: translateX(-50%);
    height: 60vh;
    min-height: 300px;
    background: url('../img/CleaningEquipment.avif') no-repeat center/cover;
    border-radius: .5rem;
    overflow: hidden;
}

.social-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.3);
    z-index: 1;
}

.social-hero .hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 2;
    color: #fff;
}

.social-hero .hero-content .social-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin: 0 .5rem;
    width: 40px;
    height: 40px;
    background: #fff;
    color: #fff;
    background-color: #000;
    border-radius: 50%;
    font-size: 1.1rem;
    transition: background .3s, color .3s;
    text-decoration: none;
}

.social-hero .hero-content .social-icons a:hover {
    background: #1b5e96;
    color: #fff;
}

.social-hero .hero-content small {
    display: block;
    font-size: .8rem;
    letter-spacing: 1px;
    margin-bottom: .5rem;
}

.social-hero .hero-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin: .5rem 0 0;
}

/* ===== Connect With Us ===== */
.connect-section h2 {
    text-align: center;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 2rem;
}

.connect-section .form-label {
    font-weight: 500;
}

.connect-section .form-control {
    border: 1px solid #ccc;
    border-radius: 0;
}

.connect-section .input-group .btn {
    border-radius: 0;
    border-right: 0;
}

.connect-section .input-group .form-control {
    border-left: 0;
}

.connect-section .btn-connect {
    background-color: #1b5e96;
    color: #fff;
    padding: 0.75rem 2rem;
    font-weight: 600;
    border: none;
    border-radius: .25rem;
    width: 200px;
}

/* We Take Pride */
.pride-section .img-fluid {
    border-radius: .5rem;
}

.pride-section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.pride-section p {
    margin-bottom: 1.5rem;
    color: #333;
}

.pride-section .btn-quote {
    background-color: #1b5e96;
    color: #fff;
    padding: .75rem 2rem;
    font-weight: 600;
    border-radius: .5rem;
    text-decoration: none;
    display: inline-block;
    transition: background-color .3s ease;
}

.pride-section .btn-quote:hover {
    background-color: #1b5e96;
}

.pride-section .thumbs .col-4 img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: .5rem;
}

/* ===== Job Section ===== */
.job-section {
    background-color: #1b5e96;
    color: #fff;
}

.job-section .job-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.job-section .job-card h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: .5rem;
}

.job-section .job-card p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
}

/* ===== Why Choose Us ===== */
.why-choose-section {
    background: #fff;
    padding: 4rem 0;
}

.why-choose-section .section-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 3rem;
}

.why-choose-logos .logo-cell {
    padding: 1rem;
}

.why-choose-logos .logo-cell img {
    display: block;
    margin: 0 auto;
    max-width: 100%;
    max-height: 250px;
    object-fit: contain;
}

.why-choose-testimonials .testimonial {
    text-align: center;
    padding: 1rem;
}

.why-choose-testimonials .testimonial h5 {
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 0.75rem;
}

.why-choose-testimonials .testimonial p {
    font-style: italic;
    color: #555;
    line-height: 1.6;
}

/* 52625 */
.bsm-header {
  background: transparent;
  z-index: 100;
  color: white;
}
.bsm-header1 {
  /* background: transparent; */
  background: white;
  z-index: 100;
  color: black;
}

.bsm-nav a {
  color: black;
  font-weight: 700;
  text-transform: uppercase;
  text-decoration: none;
  padding: 0.5rem 0.75rem;
  transition: color 0.2s;
}
.bsm-nav1 a {
  color: white;
  font-weight: 700;
  text-transform: uppercase;
  text-decoration: none;
  padding: 0.5rem 0.75rem;
  transition: color 0.2s;
}

.bsm-nav a:hover {
  color: #f3c76a;
}

.bsm-nav .has-submenu::after {
  content: " ▼";
  font-size: 0.75rem;
}

.dropdown-content {
  background-color: rgba(0, 0, 0, 0.85);
  border: 1px solid #444;
}

.dropdown-content a {
  color: white;
}

.dropdown-content a:hover {
  background-color: #222;
  color: #f3c76a;
}

.phone a {
  color: #f3c76a;
  font-weight: 600;
  font-size: 0.95rem;
}

.menu-icon div {
  background-color: white;
}

.service-box {
  height: 300px;
  background-size: cover;
  background-position: center;
  position: relative;
  border: 8px solid #f3c76a;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.5rem;
  color: white;
  text-align: left;
  transition: transform 0.3s ease;
}

.service-box h3 {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #fff;
  text-shadow: 1px 1px 2px black;
}

.service-box .btn-learn {
  align-self: flex-start;
  background: #111;
  border: 1 px solid #f3c76a;
  color: #f3c76a;
  text-transform: uppercase;
  font-weight: 600;
  font-size: 0.85rem;
  padding: 0.5rem 1rem;
  text-decoration: none;
  transition: background 0.3s ease, color 0.3s ease;
}

.service-box .btn-learn:hover {
  background: #f3c76a;
  color: #111;
}

.service-box:hover {
  transform: translateY(-5px);
}

/* ===== Achievements ===== */
.achievements-section {
  background-color: #fff;
}
.achievements-section .section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #1a1a2e;
}
.achievements-section .achievement-card {
  background-color: #f8f9fa;
  border-radius: .5rem;
  text-align: center;
  transition: transform .3s ease;
}
.achievements-section .achievement-card:hover {
  transform: translateY(-5px);
}
.achievements-section .achievement-icon i {
  font-size: 2.5rem;
  color: #1b5e96;
}
.achievements-section .achievement-number {
  font-size: 2rem;
  font-weight: 700;
  color: #1a202c;
}
.achievements-section .achievement-label {
  font-size: 1rem;
  color: #555;
}

/* ---------- Footer Top ---------- */
.footer-top {
  border-top: 1px solid #ddd;
  background: #f8f9fa;
  padding: 3rem 0;
}
.footer-cta {
  background: #1b5e96;
  color: #fff;
  text-align: center;
  border-radius: .25rem;
}
.footer-cta p {
  font-size: .9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .05em;
  margin-bottom: .5rem;
}
.footer-cta h3 {
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 1rem;
}
.btn-proposal {
  background: #fff;
  color: #A31E25;
  border: none;
  padding: .75rem 1.5rem;
  font-weight: 600;
  text-transform: uppercase;
  border-radius: .25rem;
}

/* section titles & links */
.footer-title {
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  color: #0D2336;
  margin-bottom: .75rem;
}
.footer-top ul {
  padding: 0;
  list-style: none;
}
.footer-top a {
  color: #556574;
  text-decoration: none;
}
.footer-top a:hover {
  text-decoration: underline;
}

/* ---------- Footer Bottom ---------- */
.footer-bottom {
  border-top: 1px solid #ddd;
  background: #fff;
}
.footer-logo {
  max-width: 200px;
}
.footer-info p {
  margin: 0;
  font-size: .875rem;
  color: #556574;
}
.footer-newsletter input {
  max-width: 200px;
}

 /* Show hamburger only on mobile */
.menu-toggle {
  display: block;
  cursor: pointer;
  color: #333;
}
@media (min-width: 768px) {
  .menu-toggle { display: none; }
}

/* When #navMenu has .show, display it as a vertical panel */
#navMenu.show {
  display: flex !important;
  flex-direction: column;
  position: absolute;
  top: 100%;      /* just below header */
  left: 0;
  width: 100%;
  background: #000;
  padding: 1rem 0;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
  z-index: 1000;
}

/* Stack links full-width on mobile */
#navMenu.show a {
  padding: 0.75rem 1.5rem;
  width: 100%;
  border-bottom: 1px solid #eee;
}

/* Reset dropdown submenu inside the mobile menu */
#navMenu.show .dropdown-content {
  position: static;
  border: none;
  box-shadow: none;
  flex-direction: column;
}

/* Submenu hidden by default */
.dropdown-content {
  display: none;
  flex-direction: column;
  background: #000;
  padding: 0.5rem 0;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 200px;
  z-index: 1000;
}

/* When the JS toggles .show, display it */
.dropdown-content.show {
  display: flex;
}

/* Optional: on desktop, also open on hover */
@media (min-width: 768px) {
  .dropdown:hover .dropdown-content {
    display: flex;
  }
}

   /* make sure we can layer things */
.service-box {
  position: relative;
  overflow: hidden;
}

/* keep your existing overlay */
.service-box::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: #1b5e96;
  opacity: 0;
  transition: opacity .3s ease;
  z-index: 1;
}

/* center the text container */
.service-box .hover-text {
  position: absolute;
  inset: 0;
  /* display: flex; */
  align-items: center;
  justify-content: center;
  pointer-events: none; /* so buttons/titles still clickable */
  z-index: 2;
}

/* style & hide the paragraph initially */
.service-box .hover-text p {
  margin: 0;
  padding: .75rem 1.5rem;
  background: rgba(255,255,255,0.2);
  color: #fff;
  font-size: 1.2rem;
  font-weight: 600;
  letter-spacing: .03em;
  line-height: 1.3;
  text-align: center;
  border-radius: .5rem;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
  text-shadow: 0 2px 4px rgba(0,0,0,0.6);
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .4s ease, transform .4s ease;
}

/* reveal both overlay & text on hover */
.service-box:hover::before {
  opacity: 1;
}
.service-box:hover .hover-text p {
  opacity: 1;
  transform: translateY(0);
}

/* keep your title & button above everything */
.service-box h3,
.service-box .btn-learn {
  position: relative;
  z-index: 3;
}
/* ─── Photo Gallery ───────────────────────────────────────────────── */
.photo-gallery {
  padding: 4rem 2rem;
  background: #f9f9f9;
}
.photo-gallery h2 {
  text-align: center;
  margin-bottom: 2rem;
  font-size: 2rem;
  color: #333;
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  grid-gap: 1rem;
}
.gallery-item {
  overflow: hidden;
  /* border-radius: .5rem; */
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.gallery-item img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform .4s ease;
}
.gallery-item:hover img {
  transform: scale(1.1);
}
.photo-gallery .gallery-item img {
  border: 8px solid #f3c76a;
  /* border-radius: .5rem; */
}
.phone .social-media a {
  color: #f3c76a;              /* default icon color */
  font-size: 1.25rem;       /* adjust as needed */
  transition: color .3s;
}

.phone .social-media a:hover {
  color: #333;           /* your gold accent */
}
/* ─────────────────────────────────────────────────────────────────── */

