* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  -webkit-font-smoothing: antialiased; /* Improve text rendering on iOS */
  text-rendering: optimizeLegibility;
  
}



.about-section {
  display: flex;
  display: -webkit-flex;
  justify-content: space-around;
  -webkit-justify-content: space-around;
  align-items: center;
  padding: 0px 0px 50px;
}

.about-text {
  flex: 0.6;
  -webkit-flex: 0.6;
}

.about-text h3 {
  margin: 0;
  font-size: 1.5rem;
  color: #333;
}

.about-text p {
  margin: 5px 0;
  font-size: 1rem;
  color: #555;
}

.about-link {
  margin-right: 80px;
}

.about-link a {
  display: inline-block;
  padding: 10px 20px;
  font-size: 1rem;
  color: #fff;
  background-color: #1c2835;
  text-decoration: none;
  border-radius: 5px;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.about-link a:hover {
  background-color: #bd0202;
  transform: scale(1.1); /* Slightly enlarges the button */
}



  .hero-slider {
    height: 75vh;
    background: #ccc;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .home-about {
    display: flex;
    justify-content: center;
    align-items: center;

  }
  
  .home-about-img-wrapper img {
    max-width: 500px;
    border-radius: 10px;
  }

  .home-description {
    padding: 10px 100px;
  }


  .home-description h2 {
    font-size: 2rem;
    color: #d50100;
  }


  .home-description p {
    font-size: 1rem;
    margin-bottom: 20px;
  }

  .home-description-link {
    font-size: 1rem;
    text-decoration: none;
    color: red;
  }

  .home-services-section {
    padding: 50px 20px;
    text-align: center;
  }

  .home-services-section h2 {
    text-align: center;
    font-weight: 600;
}

  .home-services-card-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    padding: 2%;
    width: 100%;
  }

  .home-services-card {
    display: -webkit-flex; /* Safari fallback */
    padding: 5px;
    border-radius: 10px;
    box-shadow: 0 0 11px #0000001a;
    border: 1px solid rgba(0, 0, 0, .0901960784);
    width: 500px;
    height: 480px;
    display: flex;
    -webkit-flex-direction: column; /* Safari fallback */
    justify-content: space-between;
    align-items: flex-start;
    flex-direction: column;
  }

  .home-services-card img {
    height: 200px;
    width: 100%;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 0;
  }

  .home-services-card-content{
    width: 100%;
    padding: 10px;
  }

  .home-services-card-content h2{
    font-size: 1.3rem;
    font-weight: 500;
    margin: 10px 0;
    text-align: start !important;
  }

  .home-services-card-content p{
    font-size: .9rem;
    margin-bottom: 10px;
    text-align: start;
  }

  .home-services-btn {
    background-color: #bd0202;
    width: 100%;
    display: block;
    border-radius: 10px;
    padding: 5px;
    color: #fff;
    text-align: center;
    text-decoration: none;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .home-sustainability-section {
    padding: 20px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .home-sustainability-content-wrapper {
    display: flex;
    max-width: 1200px;
    justify-content: space-between;
  }

  .home-sustainability-content {
    width:100%;

  }

  .home-sustainability-content p{
    text-align: justify;
    margin-top: 2%;
    width: 80%;
    font-size: .9rem;

  }



  .home-sustainability-content h2 {
    font-size: 2rem;
    color: #d50100;
  }


  .home-sustainability-img-wrapper img {
    max-width: 500px;
    border-radius: 10px;
  }

  .home-cp-download-btn-section {
    margin-top: 5%;
    width: 100%;
    padding: 0 2%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2%;
    height: 200px;
  }
  
  .home-cp-card {
    padding: 1%;
    border-radius: 20px;
    border: 1px solid rgba(20, 20, 20, 0.1);
    box-shadow: 0px 0px 13px rgba(0, 0, 0, 0.137);
    color: #000000;
    text-decoration: none;
    transition: 0.2s;
    display: inline-block;
    text-align: center;
    margin-bottom: 100px;
  }
  
  .home-cp-card:hover {
    box-shadow: none;
  }
  
  .home-cp-card:hover .home-cp-card-icon {
    /* animation: rotate 2s infinite linear; */
    -webkit-animation: rotate 2s infinite linear;
  animation: rotate 2s infinite linear;
  }
  
  @keyframes rotate {
    0% {
      transform: rotate(0deg);
    }
    100% {
      transform: rotate(360deg);
    }
  }
  @-webkit-keyframes rotate {
    0% {
      -webkit-transform: rotate(0deg);
    }
    100% {
      -webkit-transform: rotate(360deg);
    }
  }
  
  .home-cp-card-icon {
    font-size: 3rem;
    color: red;
    transition: 0.2s;
    position: absolute;
  }
  
  .home-cp-card p {
    margin-top: 5%;
    margin-bottom: 6%;
    font-size: .9rem;
    text-align: left;
    position: relative;
    top: 50px;
  }
  
  
  .home-cp-card-link {
    border-radius: 10px;
    font-size: 2rem;
    color: #000000;
    font-weight: 600;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    text-transform: uppercase;
  }
  
  .home-cp-card-link-icon {
    font-size: 3rem;
  }

/* General Slider Styles */
.advance-slider {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

.advance-slider__slides {
  display: flex;
  display: -webkit-flex;
  -webkit-transition: -webkit-transform 1s ease-in-out; /* Safari fallback */
  transition: transform 1s ease-in-out;
}

.advance-slider__slide {
  min-width: 100%;
  height: 100%;
  position: absolute;
  display: -webkit-flex; /* Safari fallback */
  display: flex;
  -webkit-justify-content: center; /* Safari fallback */
  justify-content: center;
  -webkit-align-items: center; /* Safari fallback */
  align-items: center;
  opacity: 0;
  -webkit-transform: scale(1.1); /* Safari fallback */
  transform: scale(1.1);
  -webkit-transition: opacity 1s ease-in-out, -webkit-transform 1s ease-in-out; /* Safari fallback */
  transition: opacity 1s ease-in-out, transform 1s ease-in-out;
  z-index: 0;
}

.advance-slider__slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(70%);
}

.advance-slider__content {
  position: absolute;
  color: white;
  text-align: left;
  padding-left: 50px;
  z-index: 2;
  opacity: 0;
  -webkit-transform: translateY(20px); /* Safari fallback */
  transform: translateY(20px);
  -webkit-transition: opacity 1s ease-in-out, -webkit-transform 1s ease-in-out; /* Safari fallback */
  transition: opacity 1s ease-in-out, transform 1s ease-in-out;
  max-width: 50%;
}

.advance-slider__content h1 {
  font-size: 2.5rem; /* Adjust font size for modern feel */
  font-weight: bold; /* Bold main text */
  text-transform: uppercase; /* Make text uppercase */
  letter-spacing: 2px; /* Slight letter spacing */
  line-height: 1.4; /* Adjust line height for readability */
}

.advance-slider__content p {
  font-size: 1.2rem; /* Slightly smaller than h1 */
  font-weight: 300; /* Thin text for a clean, modern look */
  margin-top: 20px; /* Add some space between the heading and paragraph */
  letter-spacing: 1px; /* Slight letter spacing */
  line-height: 1.6; /* Adjust line height for better readability */
}

.industries-section {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 50vh;
  background-color: #f4f4f4;
}

.home-industry-field-container {
  width: 80%;
  max-width: 1200px;
  display: flex;
  justify-content: space-around;
  position: relative;
}

.home-industry-field-card-container {
  width: 30%;
  text-align: center;
}

.home-industry-field-image-name {
  font-size: 17px;
  font-weight: bold;
  margin-bottom: 8px;
  color: #333;
}

.home-industry-field-card {
  width: 100%;
  height: 200px;
  background-size: cover;
  background-position: center;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.home-industry-field-visible {
  opacity: 1;
}


.why-choose-us-wrapper {
  padding: 0px 30px 30px 30px;
  text-align: center;
}

.why-choose-us-title {
  font-size: 2rem;
  color: #bd0202;
  margin-bottom: 20px;
}

.why-choose-us-features-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
}

/* Styling each card */
.why-choose-us-feature-card {
  width: 240px;
  height: 240px;
  background-color: #f0f0f0;
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  position: relative;
  transition: transform 0.3s;
  text-align: center;
}

.why-choose-us-feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.why-choose-us-feature-content h3 {
  font-size: 1.15em;
  color: #333333;
  margin: 0;
}

.why-choose-us-feature-content p {
  font-size: 0.9em;
  color: #666666;
  line-height: 1.4;
  margin: 5px 0 0;
}

.why-choose-us-feature-icon {
  font-size: 1.8em;
  background-color: #bd0202; /* Icon background color */
  color: #ffffff;
  padding: 10px;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: -30px;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.product-categories{
  font-size: 2rem;
  color: #bd0202;
  padding-left: 80px;
}

.product-categories-title-analyzer{
  font-size: 2rem;
  color: #bd0202;
  text-align: left;
  text-decoration: underline;
  padding: 0px 60px;
}


.pro-image-section {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px 40px;
  gap: 20px; /* Space between image and content */
  background-color: #f9f9f9; /* Light background color for the section */
}


.pro-image-container {
  flex: 0.8; /* Image takes up 1 part of the space */
  text-align: center; /* Center the image if it is smaller */
}

.pro-image-left {
  width: 100%; /* Make the image responsive */
  max-width: 350px; /* Set a maximum width for the image */
  height: auto;
  border-radius: 10px; /* Optional: Rounded corners */
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Optional: Shadow for better appearance */
}

.pro-content-container {
  flex: 1.2; /* Content takes up 2 parts of the space */
  text-align: left;
}

.pro-title {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 10px;
  color: #333;
}

.pro-description {
  font-size: 16px;
  color: #666;
  margin-bottom: 20px;
}

.pro-read-more-btn {
  display: inline-block;
  padding: 10px 20px;
  background-color: #bd0202; /* Button background color */
  color: #fff; /* Button text color */
  text-decoration: none;
  border-radius: 5px;
  transition: background-color 0.3s;
}

.pro-read-more-btn:hover {
  background-color: green; /* Darker color on hover */
}

.pro-card-section {
  padding: 50px 20px;
  text-align: center;
}

.pro-filter-buttons {
  margin-bottom: 20px;
}

.pro-filter-btn {
  padding: 10px 20px;
  margin: 5px;
  background-color: #bd0202;
  color: #fff;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.pro-filter-btn.active {
  background-color: #a00202;
}

.pro-filter-btn:hover {
  background-color: #a00202;
}

.pro-card-container {
  display: flex;
  display: -webkit-flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

.pro-card {
  width: 300px;
  border: 1px solid #ddd;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transform: scale(1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pro-card img {
  width: 100%;
  height: 100;
  object-fit: cover;
}

.pro-card h3 {
  font-size: 20px;
  color: #333;
}

.pro-card p {
  font-size: 14px;
  color: #555;
  padding: 0 10px;
}

.pro-card-btn {
  display: inline-block;
  margin: 10px 0;
  padding: 10px 20px;
  background-color: #333;
  color: #fff;
  text-decoration: none;
  border-radius: 5px;
  transition: background-color 0.3s ease;
}

.pro-card-btn:hover {
  background-color: #555;
}

.pro-card:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}

/* Red Label at Top-Left Corner of Pro Slider */
.pro-slider-label {
  position: absolute;
  top: 10px;
  left: 0px;
  background-color: #bd0202;
  width: 200px;
  text-align: end;
  color: white;
  font-size: 18px;
  font-weight: bold;
  text-transform: uppercase;
  padding: 10px 30px;
  border-radius: 4px;
  font-family: Arial, sans-serif;
  z-index: 3;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  /* clip-path: polygon(20px 0%, 100% 0%, 100% 100%, 20px 100%, 0% 50%); */
  -webkit-clip-path: polygon(20px 0%, 100% 0%, 100% 100%, 20px 100%, 0% 50%);
  clip-path: polygon(20px 0%, 100% 0%, 100% 100%, 20px 100%, 0% 50%);
}

/* Ensure the Pro Slider Has Relative Positioning */
.pro-slider {
  position: relative;
  width: 100%;
  overflow: hidden;
  height: 320px;
}

.pro-images {
  display: flex;
  animation: pro-slide 30s linear infinite;
  transform: translateX(100%);
  transition: transform 0.5s ease;
  margin-top: 60px;
}

.pro-image-figure {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-right: 10px; /* Space between figures */
}

.pro-image {
  width: auto; /* Equal width for all images */
  height: 200px; /* Equal height for all images */
  object-fit: cover;
  margin-right: 40px;
  padding: 10px;
}

/* Styling the links inside figures */
.pro-image-figure a {
  text-decoration: none; /* Remove underline */
  color: #333; /* Default link color */
  font-weight: 500; /* Slightly bold */
  position: relative;
  display: inline-block;
  transition: color 0.3s ease, transform 0.3s ease; /* Smooth hover effect */
}

.pro-image-figure a:hover {
  color: #1c2835; /* Change text color on hover */
  transform: scale(1.05); /* Slight zoom effect */
}

/* Add underline animation on hover */
.pro-image-figure a::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: #1c2835; /* Match the hover text color */
  transition: width 0.3s ease; /* Smooth underline effect */
}

.pro-image-figure a:hover::after {
  width: 100%; /* Expand underline on hover */
}

/* Styling the figcaption */
figcaption {
  margin-top: 10px;
  text-align: center;
  font-size: 14px;
  color: #555;
  font-weight: 600; /* Add emphasis to text */
  transition: color 0.3s ease, transform 0.3s ease; /* Smooth hover effect */
}

.pro-image-figure:hover figcaption {
  color: #1c2835; /* Change text color on hover */
  transform: translateY(-5px); /* Slight upward motion */
}

/* Optional: Adding a shadow to figcaption on hover */
.pro-image-figure:hover figcaption {
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}


@keyframes pro-slide {
  0% {
    transform: translateX(100%); /* Start from the right */
  }
  100% {
    transform: translateX(-2800px); /* Move to the left */
  }
}

@-webkit-keyframes pro-slide {
  0% {
    -webkit-transform: translateX(100%);
  }
  100% {
    -webkit-transform: translateX(-2800px);
  }
}

.pro-slider:hover .pro-images {
  animation-play-state: paused; /* Pause the sliding on hover */
}

.hidden {
  display: none;
}



.container {
    width: 90%;
    margin: 0 auto;
}


.municipal-container {
  position: relative; 
  align-items: center;
  padding: 80px;
  background-color: #dfdfdf;
  border: 1px solid #ddd;
  border-radius: 8px;
  width: 100%;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.municipal-heading {
  text-align: center;
  margin-bottom: 30px;
}

.municipal-heading h1 {
  font-size: 2.5em;
  margin: 0;
  color: #333;
}

.municipal-heading p {
  font-size: 1.2em;
  color: #666;
}

.municipal-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

.municipal-card {
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  width: 300px;
  padding: 20px;
  text-align: center;
}

.municipal-card h3 {
  font-size: 1.3em;
  color: black;
  margin-bottom: 15px;
}

.municipal-card p {
  font-size: 1em;
  color: #555;
  margin-bottom: 20px;
}


.municipal-read-more-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 20px;
  border: 2px solid black;
  border-radius: 30px;
  text-decoration: none;
  font-size: 16px;
  font-weight: bold;
  color: black;
  transition: all 0.3s ease-in-out;
  position: relative;
}

.municipal-read-more-btn:hover {
  background: black;
  color: white;
}

.municipal-read-more-btn::after {
  content: '➜'; /* Unicode arrow symbol */
  font-size: 18px;
  margin-left: 8px;
  transition: transform 0.3s ease-in-out;
}

.municipal-read-more-btn:hover::after {
  transform: translateX(5px);
}


