* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: Arial, sans-serif;
    background: #f5f7fa;
    color: #1f2f46;
  }
  
  
  
  
  /* NAVBAR */
  
  .navbar {
    height: 90px;
  
    background: white;
  
    display: flex;
    justify-content: space-between;
    align-items: center;
  
    padding: 0 8%;
  
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
  
    position: sticky;
    top: 0;
  
    z-index: 1000;
  }
  
  .logo {
    display: flex;
    align-items: center;
    gap: 12px;
  }
  
  .logo img {
    height: 55px;
  }
  
  .logo span {
    font-size: 24px;
    font-weight: bold;
    color: #1f2f46;
  }
  
  nav a {
    margin-left: 25px;
  
    text-decoration: none;
  
    color: #1f2f46;
  
    font-weight: 600;
  
    transition: 0.3s;
  }
  
  nav a:hover {
    color: #4c6a92;
  }
  
  
  
  
  
  /* HERO */
  
  .hero {
    min-height: 90vh;
  
    background-image: url("images/CleaningImage.jpg");
  
    background-size: cover;
    background-position: center;
  
    position: relative;
  
    display: flex;
    align-items: center;
  
    padding: 0 8%;
  }
  
  .hero-overlay {
    position: absolute;
    inset: 0;
  
    background: rgba(10, 20, 35, 0.55);
  }
  
  .hero-text {
    position: relative;
  
    z-index: 2;
  
    max-width: 700px;
  
    color: white;
  }
  
  .hero h1 {
    font-size: 60px;
    line-height: 1.1;
  
    margin-bottom: 25px;
  }
  
  .hero p {
    font-size: 24px;
  
    margin-bottom: 35px;
  
    color: #f2f2f2;
  }
  
  .btn {
    display: inline-block;
  
    background: white;
  
    color: #1f2f46;
  
    padding: 15px 32px;
  
    border-radius: 8px;
  
    text-decoration: none;
  
    font-weight: bold;
  
    transition: 0.3s;
  }
  
  .btn:hover {
    background: #dfe7f3;
  }
  
  
  
  
  
  /* SECTIONS */
  
  .services,
  .about,
  .contact {
    padding: 100px 8%;
  }
  
  .services h2,
  .about h2,
  .contact h2 {
    font-size: 42px;
  
    margin-bottom: 40px;
  
    text-align: center;
  }
  
  
  
  
  
  /* SERVICE CARDS */
  
  .cards {
    display: grid;
  
    grid-template-columns: repeat(3, 1fr);
  
    gap: 30px;
  }
  
  .card {
    background: white;
  
    padding: 40px;
  
    border-radius: 14px;
  
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
  
    text-align: center;
  }
  
  .card h3 {
    margin-bottom: 20px;
  
    font-size: 24px;
  }
  
  .card p {
    line-height: 1.7;
  }
  
  
  
  
  
  /* ABOUT */
  
  .about p {
    max-width: 850px;
  
    margin: auto;
  
    text-align: center;
  
    line-height: 1.8;
  
    font-size: 20px;
  }
  
  
  
  
  
  /* CONTACT */
  
  .contact-box {
    background: white;
  
    max-width: 650px;
  
    margin: auto;
  
    padding: 45px;
  
    border-radius: 14px;
  
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
  
    display: flex;
    flex-direction: column;
  
    gap: 25px;
  }
  
  .contact-item {
    display: flex;
    align-items: center;
  
    gap: 18px;
  
    font-size: 20px;
  }
  
  .contact-item img {
    width: 30px;
    height: 30px;
  }
  
  .contact-item a {
    text-decoration: none;
  
    color: #1f2f46;
  
    font-weight: 600;
  }
  
  
  
  
  
  /* FOOTER */
  
  footer {
    background: #1f2f46;
  
    color: white;
  
    text-align: center;
  
    padding: 30px;
  }
  
  /* EXPERIENCE SECTION */

.experience-section {
    padding: 100px 8%;
  
    background: linear-gradient(to right, #ffffff, #f5f7fa);
  }
  
  .experience-container {
    max-width: 1300px;
    margin: auto;
  }
  
  .experience-text h2 {
    font-size: 44px;
  
    margin-bottom: 25px;
  
    text-align: center;
  }
  
  .experience-text > p {
    max-width: 900px;
  
    margin: auto;
  
    text-align: center;
  
    line-height: 1.8;
  
    font-size: 20px;
  
    color: #555;
  
    margin-bottom: 60px;
  }
  
  .experience-grid {
    display: grid;
  
    grid-template-columns: repeat(2, 1fr);
  
    gap: 30px;
  }
  
  .experience-card {
    background: white;
  
    padding: 40px;
  
    border-radius: 14px;
  
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
  }
  
  .experience-card h3 {
    font-size: 28px;
  
    margin-bottom: 15px;
  
    color: #1f2f46;
  }
  
  .experience-card p {
    line-height: 1.7;
  
    color: #555;
  }
  
  /* SHOWCASE SECTION */

.showcase-section {
    display: grid;
  
    grid-template-columns: 1fr 1fr;
  
    gap: 50px;
  
    align-items: center;
  
    padding: 100px 8%;
  
    background: white;
  }
  
  .showcase-image img {
    width: 100%;
  
    border-radius: 18px;
  
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
  }
  
  .showcase-text h2 {
    font-size: 42px;
  
    margin-bottom: 25px;
  }
  
  .showcase-text p {
    font-size: 20px;
  
    line-height: 1.8;
  
    color: #555;
  
    margin-bottom: 20px;
  }
  
  /* FULL SERVICES SECTION WITH IMAGES */

.services {
  padding: 110px 8%;
  background: #f5f7fa;
  text-align: center;
}

.eyebrow {
  color: #b08a5b;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: bold;
  margin-bottom: 12px;
}

.services h2 {
  font-size: 44px;
  max-width: 850px;
  margin: 0 auto 20px;
  color: #1f2f46;
}

.services-intro {
  max-width: 850px;
  margin: 0 auto 55px;
  font-size: 20px;
  line-height: 1.8;
  color: #555;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  max-width: 1300px;
  margin: auto;
}

.service-card {
  background: white;
  border-radius: 18px;
  overflow: hidden;
  text-align: left;
  box-shadow: 0 6px 20px rgba(0,0,0,0.08);
  transition: 0.3s ease;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 28px rgba(0,0,0,0.12);
}

.service-card img {
  width: 100%;
  height: 230px;
  object-fit: cover;
  display: block;
}

.service-content {
  padding: 30px;
  border-top: 5px solid #1f2f46;
}

.service-card h3 {
  font-size: 24px;
  margin-bottom: 14px;
  color: #1f2f46;
}

.service-card p {
  color: #555;
  line-height: 1.7;
  margin-bottom: 16px;
}

.service-card ul {
  padding-left: 20px;
  color: #1f2f46;
  line-height: 1.8;
  font-weight: 600;
}

/* STATS SECTION */

.stats-section {
  background: linear-gradient(to right, #1f2f46, #2f4668);
  padding: 90px 8%;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  text-align: center;
}

.stat-box {
  color: white;
}

.stat-box h2 {
  font-size: 60px;
  font-weight: 700;
  margin-bottom: 10px;
  color: white;
}

.stat-box p {
  font-size: 18px;
  color: #dbe4ee;
  text-transform: uppercase;
  letter-spacing: 1px;
}

  /* MOBILE */
  
  @media (max-width: 900px) {
    .navbar {
      flex-direction: column;
  
      height: auto;
  
      padding: 20px;
    }
  
    nav {
      margin-top: 15px;
    }
  
    .hero h1 {
      font-size: 40px;
    }
  
    .cards {
      grid-template-columns: 1fr;
    }
  
  }

  .split-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    padding: 100px 8%;
    background: white;
  }
  
  .split-image img {
    width: 100%;
    border-radius: 18px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
  }
  
  .split-text h2,
  .industries-section h2,
  .quality-section h2,
  .safety-section h2,
  .process-section h2,
  .final-cta h2 {
    font-size: 42px;
    margin-bottom: 20px;
  }
  
  .split-text p,
  .industries-section p,
  .quality-section p,
  .safety-section p,
  .final-cta p {
    font-size: 20px;
    line-height: 1.8;
    color: #555;
  }
  
  .split-text ul {
    margin-top: 25px;
    padding-left: 22px;
    font-size: 18px;
    line-height: 2;
  }
  
  .industries-section,
  .process-section {
    padding: 100px 8%;
    text-align: center;
    background: #f5f7fa;
  }
  
  .industry-grid {
    margin-top: 45px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
  }
  
  .industry-grid div {
    background: white;
    padding: 30px;
    border-radius: 14px;
    font-weight: bold;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
  }
  
  .quality-section {
    padding: 100px 8%;
    background: #1f2f46;
    color: white;
    text-align: center;
  }
  
  .quality-section p {
    color: #e5e7eb;
    max-width: 950px;
    margin: auto;
  }
  
  .quality-grid {
    margin-top: 50px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
  }
  
  .quality-grid div {
    background: rgba(255,255,255,0.1);
    padding: 30px;
    border-radius: 14px;
  }
  
  .quality-grid h3 {
    margin-bottom: 12px;
    font-size: 22px;
  }
  
  .safety-section {
    padding: 100px 8%;
    text-align: center;
    background: white;
  }
  
  .safety-section p {
    max-width: 950px;
    margin: auto;
  }
  
  .process-grid {
    margin-top: 50px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
  }
  
  .process-grid div {
    background: white;
    padding: 35px;
    border-radius: 14px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
  }
  
  .process-grid span {
    font-size: 34px;
    font-weight: bold;
    color: #b08a5b;
  }
  
  .process-grid h3 {
    font-size: 24px;
    margin: 12px 0;
  }
  
  .process-grid p {
    color: #555;
    line-height: 1.7;
  }
  
  .final-cta {
    background: linear-gradient(to right, #1f2f46, #31496d);

    color: white;

    text-align: center;

    padding: 120px 8%;

    margin-top: 80px;
}
  
  .final-cta p {
    color: #e5e7eb;
    margin-bottom: 30px;
  }
  .supply-hero {
    background:
      linear-gradient(
        rgba(15, 25, 40, 0.75),
        rgba(15, 25, 40, 0.75)
      ),
      url("images/supply-hero.jpg") center center/cover no-repeat;
  }
  .supply-hero h1 {
    color: white;
    font-weight: 800;
  }
  .supply-hero h1,
.supply-hero p,
.supply-hero .eyebrow {
  text-shadow: 0 3px 10px rgba(0,0,0,0.6);
}
.supply-hero h1 {
  color: white;
  font-size: 72px;
  font-weight: 900;
  line-height: 1.05;
}

.supply-btn {
  display: inline-block;
  margin-top: 30px;
  padding: 16px 36px;
  background: #b08a5b;
  color: white;
  text-decoration: none;
  font-weight: 700;
  font-size: 18px;
  border-radius: 8px;
  transition: 0.3s ease;
}

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


  
  @media (max-width: 900px) {

    .split-section,
    .showcase-section,
    .industry-grid,
    .quality-grid,
    .process-grid {
        grid-template-columns: 1fr;
    }

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

    .services h2 {
      font-size: 34px;
    }

}
