*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body{
    width: 100%;
    height: 100%;
    font-family: 'Poppins', sans-serif;
    scroll-behavior: smooth;
    
}

#background {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100vh;
  z-index: -1;
  position: fixed;
  top: 0;
  left: 0;
}

/* Header Styling */
header {
  display: flex;
  align-items: center;
  justify-content: space-around;
  padding: 1rem 2rem;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  transition: background-color 0.3s ease, padding 0.3s ease;
  
}

header.scrolled {
  background-color: rgba(255, 255, 255, 0.9);
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
  padding: 0.5rem 2rem;
}

header.scrolled .navbar ul li a{
  color: #333;
}
/* Logo Styling */
.logo img {
  width: 300px;
}

/* Navbar Styling */
.navbar ul {
  display: flex;
  color: w;
  gap: 2rem;
  list-style-type: none; /* Remove default list markers */
}


.navbar ul li a {
  color: white;
  text-decoration: none;
  font-size: 1rem;
}

.navbar ul li a:hover{
  color: #F16821;
}

/* Hamburger Menu Styling */
.hamburger {
  display: none;
  cursor: pointer;
}

.hamburger-icon, .cross-icon {
  width: 30px;
  height: 30px;
}

.cross-icon {
  display: none;
}

/* Mobile Styling */
@media screen and (max-width: 768px) {
  .navbar ul {
    display: none;
    flex-direction: column;
    background-color: #fff;
    box-shadow: #333;
    position: absolute;
    top: 100%;
    left: 0;
    width: 50%;
    height: 100vh;
    padding: 2rem;
    gap: 1rem;
  }

  .navbar ul li a {
    color: black;
  }

  header{
    justify-content: space-between;
  }

  .navbar ul.active {
    display: flex;
  }

  .hamburger {
    display: block;
  }
}
/* Hero Section */
.hero {
    background-image: url('Assets/Home.jpg');
    background-size: cover;
    background-position: center;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    color: #fff;
}



.hero h2 {
    font-size: 3.2rem;
    margin-bottom: 10px;
}

.hero p {
    font-size: 2rem;
    margin-bottom: 40px;
}
.about-container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: row;
    width: 100%;
    padding: 20px;
  }

.about-section {
    display: flex;
    max-width: 1200px;
    width: 100%;
    padding: 20px;
    background-color: #fff;
    border-radius: 8px;
    
  }
  .about-content {
    flex: 1;
    padding-right: 20px;
  }
  .about-content h1 {
    color: #F16821;
    font-size: 30px;
    margin: 0;
    font-weight: bolder;
  }
  .about-content h1::after {
    content: '';
    display: block;
    width: 50px;
    height: 4px;
    background-color: #f47920;
    margin-top: 8px;
  }
  .about-content p {
    margin: 20px 0;
    color: #333;
    font-weight: 100;
    line-height: 1.6;
    text-align: left;
  }
  .about-content ul {
    list-style: none;
    padding: 0;
    margin-top: 20px;
    color: #333;
    font-weight: bold;
  }
  .about-content ul li {
    margin-bottom: 8px;
  }
  .about-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .about-image img {
    max-width: 100%;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  }

  .work-section {
    text-align: center;
    background-size: cover;
    background-position: center;
    color: #fff;
    padding-top: 40px;
    padding-bottom: 40px;
  }
  
  .work-img {
    width: 100%;
    height: auto;
    min-height: 50vh;
    padding: 60px 0;
    background-attachment: fixed;
    background-image: url(Assets/work.jpg);
    object-fit: cover;
    background-size: cover;
    
  }
  .work-section h2 {
    font-size: 2.5rem;
    color: #F16821;
    font-weight: 800;
    margin-bottom: 10px;
    padding-top: 3%;
  }
  
  .underline {
    width: 60px;
    height: 4px;
    background-color: #f47920;
    margin: 0 auto 30px;
  }
  
  .work-columns {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto; /* Centers the work-columns container */
    flex-wrap: wrap;
    gap: 20px;
  }
  
  .work-column {
    flex: 1;
    max-width: 300px;
    text-align: left;
    align-items: center;
    padding: 20px;
    border-radius: 8px;
    
  }
  
  .work-column h3 {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 10px;
    color: #fff;
  }
  
  .work-column p {
    line-height: 1.6;
    font-weight: 100;
    font-size: medium;
    color: #ddd;
  }
  
  .team-section {
    text-align: center;
    padding: 40px;
    background-color: #fff;
}

.team-section h2 {
    font-size: 2rem;
    color: #F16821;
    font-weight: 900;
}

.underline {
    width: 60px;
    height: 4px;
    background-color: #f47920;
    margin: 10px auto 30px;
}

.team-members {
    display: flex;
    justify-content: center; 
    gap:5%;
    margin-top: 2%;
    flex-wrap: wrap;
}

.member {
    max-width: 300px;
    text-align: left;
}

.member img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    margin-bottom: 10px;
}

.member h3 {
    font-size: 1.2rem;
    color: #333;
    margin-bottom: 5px;
}

.member p {
    font-weight: bold;
    color: #777;
    margin-bottom: 10px;
    font-size: 20px;
}

.member ul {
    list-style: none;
    padding: 0;
    font-size: 0.9rem;
    color: #555;
    text-align: left;
}

.member ul li {
    margin-bottom: 5px;
}

.service-section  {
  text-align: center;
  color: #fff;
  padding: 40px 0;
  background-size: cover;
  background-position: center;
  z-index: 2;
}

.service-img {
  width: 100%;
  height: auto;
  min-height: 80vh;
  background-attachment: fixed;
  background-image: url('Assets/Home.jpg'); /* Replace with your image path */
  background-size: cover;
  position: relative;
  
  
}

.service-img2 {
  width: 100%;
  height: auto;
  min-height: 60vh;
  background-attachment: fixed;
  background-image: url('Assets/about-section.jpg'); /* Replace with your image path */
  background-size: cover;
  position: relative;
  
  
}

.service-section h2 {
  font-size: 2.5rem;
  color: #F16821;
  font-weight: bold;
  margin-bottom: 10px;
  padding-top: 3%;
}

.service-section .underline {
  width: 60px;
  height: 4px;
  background-color: #f47920;
  margin: 0 auto 30px;
}

.service-columns {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
  
}

.service-column {
  flex: 1 1 30%; /* Flex basis of 30% allows for 3 columns in a row */
  max-width: 30%;
  min-width: 280px; /* Minimum width to maintain readability */
  text-align: left;
  padding: 20px;
  
}
.service-column h3 {
  font-size: 1.3rem;
  font-weight: bold;
  margin-bottom: 10px;
  color: black;
}

.service-column p {
  line-height: 1.6;
  color: black;
}

.asbestos-section {
  background-image: url('Assets/what.jpg'); /* Replace with your background image path */
  background-size: cover;
  background-position: center;
  padding: 60px 20px;
  position: relative;
  text-align: left;
  filter: grayscale(0.1);
}

.asbestos-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.7); /* Dark overlay */
  z-index: 1;
}

.asbestos-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
  color: #fff;
}

.asbestos-content h2 {
  font-size: 2.5rem;
  color: #F16821;
  font-weight: bold;
  margin-bottom: 10px;
  text-align: center;
}

.underline {
  width: 60px;
  height: 4px;
  background-color: #f47920;
  margin: 0 auto 30px;
}

.asbestos-content p {
  line-height: 1.6;
  margin-bottom: 20px;
}

.asbestos-content ul {
  list-style: none;
  padding: 0;
}

.asbestos-content ul li {
  margin-bottom: 10px;
}

.asbestos-content ul li a {
  color: #f47920;
  text-decoration: none;
}

.asbestos-content ul li a:hover {
  text-decoration: underline;
}

.contact-section {
  padding: 40px 20px;
  text-align: left;
  background-color: #f8f8f8;
}

.contact-container {
  max-width: 1200px;
  margin: 0 auto;
}

.contact-info h2 {
  font-size: 2.5rem;
  color: #F16821;
  font-weight: bold;
}

.contact-underline {
  width: 60px;
  height: 4px;
  background-color: #f47920;
  margin: 10px 0 30px 0; /* Aligns the underline to the left */
}

.contact-details {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-top: 20px;
}

.contact-left, .contact-right {
  flex: 1 1 45%;
  text-align: left;
}

.contact-left h4, .contact-right h4 {
  font-size: 1.1rem;
  color: #333;
  font-weight: bold;
  margin-bottom: 5px;
}

.contact-left p, .contact-right p {
  color: #333;
  line-height: 1.6;
  margin-bottom: 15px;
}

.contact-left a, .contact-right a {
  color: #f47920;
  text-decoration: none;
}

.contact-left a:hover, .contact-right a:hover {
  text-decoration: underline;
}

.map-container {
  filter: grayscale(1);
  width: 100%;
}

footer {
  background-color: #f8f8f8;
  padding: 20px;
  text-align: center;
  font-size: 0.9rem;
}

footer p {
  margin: 5px 0;
}

footer a {
  color: #f47920;
  text-decoration: none;
}

footer a:hover {
  text-decoration: underline;
}

/*Media Queries */
@media  screen and (max-width: 465px) {

  header{
    justify-content: space-between;
  }

  .hero h2{
    font-size: 1.25rem;
  }

  .hero p{
    font-size: 1rem;
  }

  .about-section{
    flex-direction: column;
    gap: 10px;
  }
  .logo img{
    width: 250px;
  }
  .work-img h2{
    font-size: 1.8rem;
  }
.work-img, .service-img, .service-img2{
  min-height: 0;
  height: auto;
  padding: 60px 0;
  background-attachment: scroll;
}

.team-members{
  gap: 10%;
}
}

@media  screen and (max-width: 768px) {

  header{
    justify-content: space-between;
  }

  .hero h2{
    font-size: 2rem;
  }

  .hero p{
    font-size: 1rem;
  }

  .about-section{
    flex-direction: column;
    gap: 10px;
  }
  .logo img{
    width: 250px;
  }
  .work-img h2{
    font-size: 1.8rem;
  }
.work-img, .service-img, .service-img2{
  min-height: 0;
}

.team-members{
  gap: 10%;
}
}