/* HEADER  */
/* .header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background-color: #333;
    color: white;
  }
  
  .logo {
    font-size: 24px;
    font-weight: bold;
  }
  
  .nav-links {
    list-style: none;
    display: flex;
    gap: 20px;
  }
  
  .nav-links a {
    color: white;
    text-decoration: none;
  }

  .header {
    position: sticky;
    top: 0;
    z-index: 1000; /* Ensure the header stays above other content */
 /* }
  .logo-image {
    height: 30px;
    width: 40px;
  
  }
  @media (max-width: 50px) {
    .logo-image {
      height: 30px; /* Smaller logo for mobile */
 /*   }
    .logo span {
      font-size: 14px; /* Smaller text for mobile */
 /*   }
  } */

  /* .header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background-color: #333;
    color: white;
    position: sticky;
    top: 0;
    z-index: 1000; 
  }
  .logo-image {
    height: 30px;
    width: 40px;
  
  }
  .logo {
    display: flex;
    align-items: center;
    gap: 10px; Space between logo and text
  }

  
  .logo span {
    font-size: 20px; Adjust text size
    font-weight: bold;
  }
  
  .nav-links {
    list-style: none;
    display: flex;
    gap: 20px;
  }
  
  .nav-links a {
    color: white;
    text-decoration: none;
    font-size: 16px;
  }
  
  .nav-links a:hover {
    color: #ff6f61; Highlight color on hover
  }
  
  Responsive adjustments
  @media (max-width: 768px) {
    .logo-image {
      width: 120px; Smaller logo for mobile
    }
    .logo span {
      font-size: 16px; Smaller text for mobile
    }
    .nav-links {
      gap: 10px; Reduce gap between links for mobile
    }
    .nav-links a {
      font-size: 14px; Smaller font size for mobile
    }
  } */

/* ...................... HEADER OG ..................... */

/* 
  .header {
    position: sticky;
    top: 0;
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background-color: #333;
    color: white;
  }
  
  .logo {
    display: flex;
    align-items: center;
    gap: 10px;
  }
  
  .logo-image {
    width: 30px;
    height: 40px;
  }
  
  .logo span {
    font-size: 20px;
    font-weight: bold;
  }
  
  .nav-links {
    list-style: none;
    display: flex;
    gap: 20px;
  }
  
  .nav-links a {
    color: white;
    text-decoration: none;
    font-size: 16px;
    transition: color 0.3s ease;
  }
  
  .nav-links a:hover {
    color: #ff6f61;
  }
  
  .nav-links a.active {
    color: #ff6f61; Highlight color for active link
    font-weight: bold; Optional: Make the active link bold
  }
  
  Responsive adjustments
  @media (max-width: 768px) {
    .logo-image {
      width: 120px;
    }
    .logo span {
      font-size: 16px;
    }
    .nav-links {
      gap: 10px;
    }
    .nav-links a {
      font-size: 14px;
    }
  } */

  .header {
    position: sticky;
    top: 0;
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background-color: #333;
    color: white;
  }
  
  .logo {
    display: flex;
    align-items: center;
    gap: 10px;
  }
  
  .logo-image {
    width: 40px;
    height: 40px;
  }
  
  .logo span {
    font-size: 20px;
    font-weight: bold;
  }
  
  /* Hamburger Menu Icon */
  .hamburger-menu {
    display: none; /* Hide by default on desktop */
    font-size: 24px;
    cursor: pointer;
  }  
  
  /* Navigation Links */
  .nav-links {
    display: flex;
    gap: 20px;
  }
  
  .nav-links ul {
    list-style: none;
    display: flex;
    gap: 20px;
    margin: 0;
    padding: 0;
  }
  
  .nav-links a {
    color: white;
    text-decoration: none;
    font-size: 16px;
    transition: color 0.3s ease;
  }
  
  .nav-links a:hover {
    color: #ff6f61;
  }
  
  .nav-links a.active {
    color: #ff6f61;
    font-weight: bold;
  }
  
  /* Mobile Menu Styles */
  @media (max-width: 768px) {
    .hamburger-menu {
      display: block; /* Show hamburger menu on mobile */
    }
  
    .nav-links {
      position: absolute;
      top: 80px; /* Adjust based on header height */
      right: 0;
      background-color: #333;
      flex-direction: column;
      width: 100%;
      align-items: center;
      gap: 0;
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.3s ease-in-out;
    }
  
    .nav-links.active {
      max-height: 400px; /* Adjust based on content height */
    }
  
    .nav-links ul {
      flex-direction: column;
      width: 100%;
      text-align: center;
    }
  
    .nav-links li {
      padding: 10px 0;
    }
  }

  /* Header.css or App.css */
.nav-links ul li {
  position: relative;
}

.dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: white;
  border: 1px solid #ddd;
  z-index: 1000;
  min-width: 150px;
}

.nav-links ul li:hover .dropdown {
  display: block;
}

.dropdown a {
  display: block;
  padding: 8px 12px;
  color: black;
  text-decoration: none;
}

.dropdown a:hover {
  background-color: #f0f0f0;
}



/* HERO */

.hero {
    background-image: url('../img/bg3.webp');
    background-size: cover;
    background-position: center;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    /* color: rgb(255, 252, 252); */
    color: #F5F5F5;

  }
  
  .hero-content h1 {
    font-size: 38px;
    margin-bottom: 20px;
    text-shadow: 
    -1px -1px 0 black,  
     1px -1px 0 black,
    -1px  1px 0 black,
     1px  1px 0 black;
  }
  
  /* .hero-content p {
    font-size: 24px;
    margin-bottom: 30px;
    color: #625a52
  } */

  .hero-content p {
    font-size: 20px;
    margin-bottom: 30px;
    color: #ffffff;
    text-shadow: 
    -1px -1px 0 black,  
     1px -1px 0 black,
    -1px  1px 0 black,
     1px  1px 0 black;
  }
  
  .cta-button {
    padding: 10px 20px;
    font-size: 18px;
    color: white;
    background-color: #ff6f61;
    border: none;
    cursor: pointer;
  }

  .hero-custom-width {
    width: 100%; /* Adjust width as needed */
    max-width: 800px; /* Optional: set a max width */
    margin: 0 auto; /* Center align */
    text-align: justify; 
  }

/* PORTFOLIO */

.portfolio {
    padding: 50px 20px;
    text-align: center;
  }
  
  .portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 30px;
  }
  
  .portfolio-item {
    background-color: #f4f4f4;
    padding: 20px;
    text-align: center;
    font-size: 24px;
  }

/* SERVICES */
/* 
.services {
    padding: 50px 20px;
    text-align: center;
  }
  
  .service-list {
    display: flex;
    justify-content: space-around;
    margin-top: 30px;
  }
  
  .service-item {
    max-width: 300px;
  }
  
  .service-item h3 {
    font-size: 24px;
    margin-bottom: 10px;
  }
  
  .service-item p {
    font-size: 16px;
    color: #666;
  } */


/* NEW */

.services-container {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

.service-item {
  background: #f9f9f9;
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 15px;
  width: 300px;
  text-align: center;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.service-item:hover {
  transform: translateY(-10px);
}

/* .service-item img {
  max-width: 100%;
  border-radius: 8px;
  margin-bottom: 15px;
} */

.service-item img {
  width: 100%; /* Ensure the image fills the container */
  height: 200px; /* Fixed height for images */
  object-fit: cover; /* Ensures the image covers the area without distortion */
  border-radius: 8px;
  margin-bottom: 15px;
}

.service-item h3 {
  font-size: 1.5rem;
  margin-bottom: 10px;
  color: #333;
}

.service-item p {
  font-size: 1rem;
  color: #555;
}

/* FOOTER */

.footer {
    background-color: #333;
    color: white;
    padding: 20px;
    text-align: center;
  }
  
  .footer-links {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 10px;
  }
  
  .footer-links a {
    color: white;
    text-decoration: none;
  }

  /* CONTACT US */

  /* .contact {
    padding: 50px 20px;
    text-align: center;
    background-color: #f9f9f9;
  }
  
  .contact h2 {
    margin-bottom: 30px;
  }
  
  .contact-form {
    max-width: 600px;
    margin: 0 auto;
    text-align: left;
  }
  
  .form-group {
    margin-bottom: 20px;
  }
  
  .form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
  }
  
  .form-group input,
  .form-group textarea {
    width: 150%;
    padding: 10px;
    font-size: 16px;
    border: 1px solid #ccc;
    border-radius: 5px;
  }
  
  .form-group textarea {
    resize: vertical;
    height: 150px;
  }
  
  .submit-button {
    padding: 10px 20px;
    font-size: 18px;
    color: white;
    background-color: #ff6f61;
    border: none;
    border-radius: 5px;
    cursor: pointer;
  }
  
  .submit-button:hover {
    background-color: #e65a50;
  } 
   */

/* Contact Section */
/* #contact {
  padding: 40px 20px;
  margin: 20px 0;
  background-color: #f9f9f9;
}

.contact-container {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
} */

/* Map Section */
/* .map-section {
  flex: 1;
  min-width: 300px;
}

.map-section img {
  width: 400px;
  height: 300px;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
} */

/* Contact Details Section */
/* .contact-details {
  flex: 1;
  min-width: 300px;
  padding: 20px;
  background-color: white;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
} */

/* .contact-details h3 {
  font-size: 1.8rem;
  margin-bottom: 20px;
  color: #333;
}

.contact-details p {
  font-size: 1.1rem;
  color: #555;
  line-height: 1.8;
  margin-bottom: 15px;
}

.contact-details strong {
  color: #333;
}

@media (max-width: 768px) {
  .contact-container {
    flex-direction: column;
  }

  .map-section,
  .contact-details {
    width: 100%;
  }
} */

.contact {
  padding: 50px 20px;
  text-align: center;
  background-color: #f9f9f9;
}

.contact h2 {
  margin-bottom: 30px;
}

.contact-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: center;
}

.contact-form {
  flex: 1 1 600px;
  background-color: white;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.form-group {
  margin-bottom: 20px;
  text-align: left;
}

.form-group label {
  display: block;
  margin-bottom: 5px;
  font-weight: bold;
}

.form-group input,
.form-group textarea {
  width: 98%;
  padding: 10px;
  font-size: 16px;
  border: 1px solid #ccc;
  border-radius: 5px;
}

.form-group textarea {
  resize: vertical;
  height: 150px;
}

.submit-button {
  padding: 10px 20px;
  font-size: 18px;
  color: white;
  background-color: #ff6f61;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

.submit-button:hover {
  background-color: #e65a50;
}

.get-in-touch {
  flex: 1 1 500px;
  background-color: white;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  text-align: left;
}

.get-in-touch h3 {
  font-size: 24px;
  margin-bottom: 20px;
  color: #333;
}

.contact-info p {
  font-size: 16px;
  color: #666;
  margin-bottom: 10px;
}

.contact-info strong {
  color: #333;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .contact-container {
    flex-direction: column;
  }

  .contact-form,
  .get-in-touch {
    flex: 1 1 auto;
  }
}

/* Project Gallery */
/* .project-gallery, .document-gallery {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

.project-item, .document-item {
  background: #f9f9f9;
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 15px;
  width: 300px;
  text-align: center;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.project-item img, .document-item img {
  max-width: 100%;
  border-radius: 8px;
}

.project-item p, .document-item p {
  margin-top: 10px;
  font-size: 1rem;
  color: #333;
} */


/* Projects Section */
/* #projects {
  padding: 40px 20px;
  margin: 20px 0;
  background-color: #f9f9f9;
}

.project-carousel {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.project-slide {
  padding: 10px;
  text-align: center;
}

/* Fixed size for project images */
/* .project-slide img {
  width: 300px; Fixed width
  height: 200px; Fixed height
  object-fit: cover; Ensures the image covers the area without distortion
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
} */

/* Customize slick carousel dots */
/* .slick-dots {
  bottom: -30px;
} */

/* .slick-dots li button:before {
  font-size: 12px;
  color: #333;
}

.slick-dots li.slick-active button:before {
  color: #007bff;
} */

/* Responsive adjustments */
/* @media (max-width: 1024px) {
  .project-slide img {
    width: 250px; Slightly smaller for tablets
    height: 150px;
  }
} */

/* @media (max-width: 600px) {
  .project-slide img {
    width: 200px; Smaller for mobile devices
    height: 120px;
  }
}  */

/* Projects Section */
/* #projects {
  padding: 40px 20px;
  margin: 20px 0;
  background-color: #f9f9f9;
}

.project-carousel {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.project-slide {
  padding: 10px;
  text-align: center;
}

/* Fixed size for project images */
/* .project-slide img {
  width: 100%; Use 100% width to fit within the slide
  height: 200px; Fixed height
  object-fit: cover; Ensures the image covers the area without distortion
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
} */

/* Customize slick carousel dots */
/* .slick-dots {
  bottom: -30px;
}

.slick-dots li button:before {
  font-size: 12px;
  color: #333;
}

.slick-dots li.slick-active button:before {
  color: #007bff;
} */

/* Responsive adjustments */
/* @media (max-width: 1024px) {
  .project-slide img {
    height: 180px; Slightly smaller for tablets
  }
}

@media (max-width: 768px) {
  .project-slide img {
    height: 150px; Smaller for smaller tablets
  }
}

@media (max-width: 480px) {
  .project-slide img {
    height: 120px; Smaller for mobile devices
  }
}  */


/* Projects Section */
#projects {
  padding: 40px 20px;
  margin: 20px 0;
  background-color: #f9f9f9;
}

.project-carousel {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.project-slide {
  padding: 10px;
  text-align: center;
  margin: 0 10px; /* Add margin between slides */
}

/* Fixed size for project images */
.project-slide img {
  width: 100%; /* Use 100% width to fit within the slide */
  height: 200px; /* Fixed height */
  object-fit: cover; /* Ensures the image covers the area without distortion */
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Customize slick carousel dots */
.slick-dots {
  bottom: -30px;
}

.slick-dots li button:before {
  font-size: 12px;
  color: #333;
}

.slick-dots li.slick-active button:before {
  color: #007bff;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .project-slide img {
    height: 180px; /* Slightly smaller for tablets */
  }
}

@media (max-width: 768px) {
  .project-slide img {
    height: 150px; /* Smaller for smaller tablets */
  }
}

@media (max-width: 480px) {
  .project-slide img {
    height: 120px; /* Smaller for mobile devices */
  }
}


/* PROJECT SECTION DORPDOWN */

/* .dropdown {
  position: relative;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  background-color: white;
  list-style: none;
  padding: 8px 0;
  box-shadow: 0 2px 5px rgba(0,0,0,0.2);
  z-index: 1000;
}

.dropdown-menu li {
  padding: 8px 16px;
  cursor: pointer;
}

.dropdown-menu li:hover {
  background-color: #f0f0f0;
} */


/* LEGAL DOCUMENT */

.legal-documents {
    padding: 50px 20px;
    text-align: center;
    background-color: #fff;
  }
  
  .legal-documents h2 {
    margin-bottom: 30px;
  }
  
  .documents-container {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
  }
  
  .document-item {
    max-width: 300px;
    text-align: center;
    transition: transform 0.3s ease;
  }
  
  .document-item:hover {
    transform: translateY(-10px);
  }
  

  .document-item h3 {
    font-size: 24px;
    margin-bottom: 10px;
  }
  
  .document-image {
    width: 100%;
    height: auto;
    border: 1px solid #ddd;
    border-radius: 8px;
    margin-bottom: 10px;
  }
  
  .document-item p {
    font-size: 16px;
    color: #666;
  }

  /* About */

  .about {
    padding: 50px 20px;
    text-align: center;
    background-color: #f9f9f9;
  }
  
  .about h2 {
    margin-bottom: 30px;
  }
  
  .about-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
  }
  
  .mission,
  .vision,
  .values {
    flex: 1 1 300px;
    background-color: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: left;
  }
  
  .mission h3,
  .vision h3,
  .values h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #333;
  }
  
  .mission p,
  .vision p,
  .values p {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
  }
  
  /* .values ul {
    list-style: none;
    padding: 0;
  }
  
  .values ul li {
    font-size: 16px;
    color: #666;
    margin-bottom: 10px;
  }
  
  .values ul li strong {
    color: #333;
  } */


  .active {
    color: #ff6f61; /* Highlight color for active link */
    font-weight: bold;
  }

  /* GALLERY */

  /* .gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 16px;
  padding: 20px;
}

.gallery-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  transition: transform 0.3s ease;
}

.gallery-image:hover {
  transform: scale(1.05);
} */


.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 16px;
  padding: 20px;
}

.gallery-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.gallery-image:hover {
  transform: scale(1.05);
}




  /* Health & Safety Section */
#health-safety {
  background-color: #f9f9f9;
  padding: 40px 20px;
  margin: 20px 0;
}

.health-safety-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: left;
}

.health-safety-content h3 {
  font-size: 1.8rem;
  margin-top: 20px;
  margin-bottom: 10px;
  color: #333;
}

.health-safety-content p {
  font-size: 1.1rem;
  color: #555;
  line-height: 1.8;
  margin-bottom: 20px;
}

.health-safety-content ul {
  list-style-type: disc;
  margin-left: 20px;
  margin-bottom: 20px;
}

.health-safety-content ul li {
  font-size: 1.1rem;
  color: #555;
  line-height: 1.8;
  margin-bottom: 10px;
}

/* Home Button */
.home-button {
  position: fixed; /* Fixed position */
  bottom: 20px; /* Position at the bottom */
  right: 20px; /* Position at the right */
  background-color: #ff6f61; /* Blue background */
  color: white; /* White text */
  border: none; /* Remove border */
  border-radius: 50%; /* Circular button */
  width: 70px; /* Fixed width */
  height: 70px; /* Fixed height */
  font-size: 18px; /* Font size */
  cursor: pointer; /* Pointer cursor on hover */
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* Add shadow */
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.3s ease; /* Smooth hover effect */
}

.home-button:hover {
  background-color: #c15147; /* Darker blue on hover */
}