/* General Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, Helvetica, sans-serif;
}

/* Hide mobile header by default */
.mobile-header {
  display: none;
  background-color: #ffffff;
  padding: 10px 20px;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
}





/* Header Styles */

p {
  margin-top: 0;
  margin: 0;
}

.header {
  font-family: Arial, sans-serif;
  /* position: fixed;  */
  top: 0; /* Stick to the top */
  left: 0;
  width: 100%; /* Make the header span full width */
  z-index: 1000; /* Ensure the header appears above other elements */
}

.top-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #5aa445;
  padding: 10px 20px;
  border-bottom-left-radius: 30px;
  border-top-left-radius: 30px;
  border-top-right-radius: 30px;
  border-bottom-right-radius: 30px;
}

.social-icon a.icons {
  font-size: 24px;
  color: #fff;
  text-decoration: none;
  padding-left: 8px;
}
a.icons:hover {
  color: #003a59;
}

.center-text {
  font-size: 16px;
  color: #fff;
  font-weight: bold;
  text-align: center;
  flex-grow: 1;
}

.logo img {
  max-width: 150px;
  height: auto;
}

.nav-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #fff;
  padding: 10px 20px;
  margin-top: 20px; /* Adjust for the fixed header */
}

.nav-bar ul {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 20px;
}

.nav-bar ul li {
  position: relative;
}

.nav-bar ul li a {
  text-decoration: none;
  color: #000;
  font-weight: bold;
  /* padding: 5px 10px; */
}

.nav-bar ul li a:hover {
  color: #659c08;
}

.nav-bar ul li a.active {
  color: #659c08;
}

.nav-bar ul li .dropdown {
  display: none;
  position: absolute;
  top: 18px;
  left: 0;
  background-color: #fff;
  border: 1px solid #ddd;
  padding: 10px 0;
  width: 180px;
  z-index: 100;
}

.nav-bar ul li:hover .dropdown {
  display: block;
}

.nav-bar ul li .dropdown li {
  padding: 5px 20px;
}

.call-icon {
  display: flex;
  align-items: center;
  gap: 10px;
}

.call-icon img {
  max-width: 50px;
  animation: bounceAnimation 1s infinite;
}

@keyframes bounceAnimation {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

.call-icon i {
  font-size: 20px;
  color: #000;
}

.btn-round {
  background-color: #5aa445;
  color: #fff;
  text-decoration: none;
  padding: 8px 20px;
  border-radius: 20px;
  font-weight: bold;
  transition: background-color 0.3s;
  border: 0.5px solid #5aa445;
}

.btn-round:hover {
  background-color: #003a59;
  border: 0.5px solid #003a59;
  color: #fff;
}

/* home  page css  */


ul {
  list-style-type: none;
  padding: 0;
}

ul li a {
  text-decoration: none;
  color: #ffffff; /* Change to your preferred color */
  font-size: 16px;
  display: block;
  /* padding: 8px 0; */
  transition: color 0.3s ease;
}

ul li a:hover {
  color: #5aa445; /* Change to your preferred hover color */
  text-decoration: underline;
}


.services-section {
  display: flex;
  justify-content: center;
  gap: 20px;
  padding: 100px;
  background-color: #f5f5f5;
}

.service-card {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  /* box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); */
}

.service-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease-in-out;
}

.service-card:hover img {
  transform: scale(1.1);
}

.service-card a {
  text-decoration: none;
  color: inherit;
}

.service-card .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* background-color: rgba(0, 0, 0, 0.6);  */
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 25px; /* Adjust as needed */
  font-weight: bold;
  text-align: center;
}

.about-section {
  display: flex;
  align-items: center;
  padding: 60px 20px;
  background-color: #f5f5f5;
}

.about-image {
  flex: 1;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.about-image img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.5s ease;
}

.about-image:hover img {
  transform: scale(1.03);
}

.container {
  display: flex;
  max-width: 1200px;
  margin: 0 auto;
  gap: 20px;
  flex-wrap: wrap; /* Makes it responsive */
}

.about-content {
  flex: 1;
  min-width: 300px;
  max-width: 600px;
  align-content: center;
}

.about-content h2 {
  font-size: 36px;
  font-weight: 700;
  color: #000000;
  margin-bottom: 20px;
  font-family: "Geometria", sans-serif;
}

.about-content p {
  font-size: 16px;
  line-height: 1.6;
  color: #333;
  margin-bottom: 20px;
  font-family: "Arial", sans-serif;
}

.about-content strong {
  font-weight: bold;
  color: #000;
}

.about-image {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  min-width: 300px;
  max-width: 400px;
}

.image-wrapper {
  position: relative;
  width: 100%;
  max-width: 300px;
  background-color: #e0e0e0;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.video-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 62vh; /* Screen ke full height par video ko center karega */
  padding-left: 90px;
}

.image-wrapper img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  display: block;
}

.image-wrapper::after {
  content: "";
  position: absolute;
  top: 15px;
  left: 15px;
  width: 100%;
  height: 100%;
  border: 2px solid #98c21c; /* Green border */
  border-radius: 8px;
  z-index: -1;
}

/* Home Services Section */

/* Home Services Section */
.home-services-container {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 50px;
  background: url("images/bgimage.png") no-repeat center center fixed;
  background-size: 110%; /* Increased size to make the image larger */
  position: relative;
  padding-top: 100px;
  padding-bottom: 100px;
}

.home-services-container::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1;
}

.home-services-wrapper {
  display: flex;
  justify-content: space-around;
  align-items: stretch; /* Stretch items to the same height */
  width: 80%;
  position: relative;
  z-index: 2;
}

/* Home Services Card */
.home-services-card {
  background: rgba(255, 255, 255, 0.1);
  padding: 20px;
  border-radius: 8px;
  flex: 0.3; /* Ensure both cards stretch equally */
  display: flex;
  flex-direction: column;
  /* justify-content: space-between; */
  backdrop-filter: blur(10px);
  color: #fff;
  border: solid;
  border-width: 1px;
  margin: 0 10px; /* Add spacing between the cards */
}

.home-services-card h3 {
  font-size: 1.5rem;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.home-services-card ul {
  list-style: none;
  padding: 0;
  text-align: justify;
  padding-left: 20px;
}

.home-services-card ul li {
  margin-bottom: 10px;
  font-size: 1rem;
  line-height: 1.5;
}

.home-services-card ul {
  list-style: none; /* Removes default bullets */
  padding: 0;
  text-align: justify;
  padding-left: 20px;
}

.home-services-card ul li {
  margin-bottom: 10px;
  font-size: 1rem;
  line-height: 1.5;
  position: relative; /* For positioning the custom bullet */
  padding-left: 20px; /* Adds space for the bullet */
}

.home-services-card ul li::before {
  content: ""; /* Adds a custom bullet */
  position: absolute;
  left: 0;
  top: 10px;
  width: 8px;
  height: 8px;
  background-color: #a3d400; /* Green color for the bullet */
  border-radius: 50%; /* Makes the bullet circular */
}

/* Commercial page css ----------------------------------*/
.services {
  width: 80%;
  margin: auto;
}
.com-services {
  display: flex;
  justify-content: center;
  gap: 20px;
  padding-top: 2vw;
  margin: auto;
  width: 80%;
}

.com-box {
  width: 50%;
  /* display: flex;
  justify-content: center;
  flex-direction: column; */
}
.cont-box i {
  color: #5aa445;
  font-size: 3rem;
}
.rating-main {
  width: 95%;
  height: 150px;
  background-color: #7a7a7a;
  border-radius: 75px;
  display: flex;
  margin-left: 20px;
}

.rating-img {
  /* display: flex;
  align-items: center; */
  /* justify-content: center; */
  padding: 35px 30px;
}

.rating-text {
  width: 250px;
}
.rating-text img {
  width: 100%;
  width: 200px;
}

.rating-text p {
  color: white;
  font-size: 20px;
  font-family: Arial, sans-serif;
  margin: 0;
}

.spinning-img {
  padding-left: 40px;
  display: flex;
  align-items: center;
}

.spinning-img img {
  width: 60px;
  height: 60px;
  animation: spin 3s linear infinite;
}

@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.rating-content {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.rating-content h2 {
  color: #000000;
  font-family: "Arial", Sans-serif;
  font-size: 42px;
  font-weight: 500;
  text-transform: capitalize;
  line-height: 1.2;
}

.rating-content p {
  font-size: 18px;
  font-weight: 500;
  font-family: Arial, sans-serif;
  line-height: 1.7;
  text-transform: capitalize;
}
.rating-btns {
  margin: 50px 0;
  display: flex;
  justify-content: space-evenly;
}
.btn-square {
  background-color: #5aa445;
  color: #fff;
  text-decoration: none;
  padding: 10px 25px;
  border-radius: 5px;
  font-size: 20px;
  font-weight: bold;
  transition: background-color 0.3s;
  border: 0.5px solid #5aa445;
}

.btn-square:hover {
  color: #fff;
  background-color: #003a59;
  border: 0.5px solid #003a59;
}

.d-color {
  color: #659c08;
}

.book-consult {
  /* margin: 30px 0; */
  /* padding: 50px 150px; */
  padding: 50px 9vw;
  background-color: #f6f7f9;
  width: 100%;
}

.book-consult h2 {
  font-size: 2.5rem;
  padding: 40px 0;
}

.frm input {
  width: 18vw;
  height: 45px;
  border-radius: 25px;
  border: 0.5px solid;
  padding: 15px;
}
.frm {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
}
.frm input:focus::placeholder {
  color: transparent;
}

/* .book-consult .info {
  display: flex;
  justify-content: space-between;
} */
.frm input:focus {
  background-color: #e5fcf9;
  outline: none;
}

.y-choose-steira {
  margin: 70px 10px;
}

.y-choose-steira h2 {
  text-align: center;
  font-size: 2.2rem;
}

.reason {
  display: flex;
  justify-content: space-evenly;
  margin-top: 40px;
}

.reason-box {
  width: 350px;
  height: 80px;
  border: 0.5px solid;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.reason-box:hover {
  border-color: #659c08;
}

.reason-box p {
  font-size: 20px;
  font-weight: 500;
}

.services h2 {
  text-align: center;
  font-size: 4rem;
}

.service-box {
  background-color: #ececec;
  padding: 20px 50px;
  display: flex;
  gap: 30px;
  border-radius: 30px;
  margin: 60px 0;
}

.s-img-box {
  margin: 50px 50px;
}
.s-content-box {
  margin-top: 50px;
}

.s-content-box h3 {
  font-size: 2rem;
  margin-bottom: 20px;
}
.s-content-box p {
  text-transform: capitalize;
  line-height: 1.7;
  font-weight: 400;
}

.s-img-box img {
  width: 400px;
  height: 300px;
}

.faqs {
  background-color: #f6f7f9;
  padding: 60px 50px;
  display: flex;
  gap: 20px;
}

.faq-accordion {
  width: 60%;
}
.faq-accordion h1 {
  font-size: 2.5rem;
  margin-bottom: 30px;
}

.faq-gotcall {
  width: 40%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
}
.faq-gotcall p {
  padding-bottom: 20px;
}
.faq-gotcall img {
  margin-top: 20px;
}

.service-area {
  padding: 40px 20px;
  background-color: #cde99f;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.service-area-main {
  display: flex;
  justify-content: center;
  /* gap: 40px; */
  /* width: 80%; */
  /* margin: auto; */
}
.service-area p {
  text-align: center;
  font-size: 25px;
}
.service-area h3 {
  font-size: 2.5rem;
  font-weight: 600;
  text-align: center;
}

/* .service-area-box {
  width: 35vw;
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 20px;
} */

.service-area-img {
  width: 60%;
}

.service-area-img img {
  width: 100%;
  transition: transform 0.5s ease-in-out; /* Smooth transition */
}

.service-area-img img:hover {
  transform: scale(1.05) rotate(-3deg); /* Zoom in and slightly rotate on hover */
}

.service-area-box-right {
  width: 35vw;
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 30px;
}
.service-d-areas {
  width: 9vw;
  height: 40px;
  border: 0.5px solid;
  border-radius: 50px;
  /* display: flex;
  justify-content: center;
  align-items: center; */
  text-align: center;
  padding-top: 5px;
  cursor: pointer;
}
.service-d-areas:hover {
  background-color: #90d41b;
}

/* contact us page------------------------------ */
.contact-address {
  width: 40%;
}

.address {
  display: flex;
  margin: 40px 30px;
}
.contact-address i {
  font-size: 2.2rem;
  color: #5aa445;
  vertical-align: middle;
}

.address h2 {
  margin-left: 20px;
  font-size: 1.5rem;
}

.sub-addr {
  margin-left: 25px;
  font-weight: 600;
  display: flex;
}
.sub-addr p {
  margin-left: 2px;
  margin-top: 6px;
}
.contact-form {
  width: 60%;
  /* background-color: #f6f7f9; */
}
.contact-form h5 {
  color: #659c08;
}

.cont-form {
  margin-top: 30px;
}

.contact-main {
  display: flex;
  flex-direction: row;
  width: 80%;
  margin: auto;
  padding: 50px 0;
}

.form-control:focus::placeholder {
  color: transparent;
}

/* residential
nested pages-------------- */

.cont-header {
  height: 200px;
  width: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  /* opacity: 0.5; */
}
.cont-header h1 {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -390%); /* Center the text */
  font-size: 4rem;
  margin: 0;
  text-align: center;
  color: white;
}
/* --------- */

.cont-header-color {
  width: 100%;
  margin: auto;
  padding: 1vw 16vw;
  background-color: #5aa445;
  display: flex;
  flex-direction: row;
  justify-content: center;
  text-align: center;
}

.cont-header-color-nested {
  width: 50%;
}
.cont-header-color-nested h2 {
  font-size: 2.5rem;
  color: white;
  padding-top: 30px;
}

.cont-with-img-main {
  /* margin: 20px 280px; */
  /* width: 80%; */
  margin: auto;
}

.cont-with-img-main > div:first-child {
  background-color: #5aa445;
}

.enzyme-video {
  position: relative;
  width: 100%;
  max-width: 500px;
  height: auto;
  border-radius: 15px;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  /* border: 3px solid white; */
  background-color: #000;
}
.enzyme-video video {
  /* position: absolute; */
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: contain;
  object-position: center;
  /* transform: rotate(90deg); */
  z-index: 9;
  opacity: 1 !important;
}

.cont-with-img-main h2 {
  font-size: 2rem;
}
.cont-with-img-main p {
  line-height: 1.7;
}

.cont-with-img-main2 {
  /* margin: 20px 280px; */
  /* width: 80%; */
  margin: auto;
}

.cont-with-img-main2 h2 {
  font-size: 2rem;
}
.cont-with-img-main2 p {
  line-height: 1.7;
}
.cont-with-img {
  /* margin: 3vw 0; */
  display: flex;
  justify-content: space-evenly;
  gap: 20px;
  /* padding: 2vw 0; */
  padding: 2vw 15vw;
  
}

.cont-with-img-right {
  width: 30vw;
}

.cont-with-img-right img {
  border-radius: 20px;
  max-width: 500px;
  height: 300px;
  width: -webkit-fill-available;
  background-size: cover; /* or 'contain' */
  background-repeat: no-repeat;
  background-position: center;
  /* width: 100%; */
}


.cont-banner-vid {
  background: #d9d9d9;
  padding: 30px 5vw;
  text-align: center;
}
.cont-banner-vid h2 {
  font-size: 2rem;
  margin-bottom: 20px;
}

.cont-banner-vid p {
  line-height: 1.7;
}


.cont-banner-upper {
  background: #d9d9d9;
  padding: 30px 5vw;
  text-align: center;
}



.banner-content {
  display: flex;
  align-items: center;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.text-content {
  flex: 1;
  text-align: left;
}

.video-content {
  flex: 1;
}

.cont-banner-upper h2 {
  font-size: 2rem;
  margin-bottom: 20px;
}

.cont-banner-upper p {
  line-height: 1.7;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .banner-content {
    flex-direction: column;
  }
  
  .video-content iframe {
    width: 100%;
    height: auto;
    aspect-ratio: 16/9;
  }
}

/* ------------------ */

.indoor-cont-points {
  /* margin: 50px 80px; */
  padding: 2vw 18vw;
  /* width: 100%; */
  margin: auto;
  background-color: #5aa445;
  display: flex;
  flex-direction: row;
  color: black;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}
.indoor-cont {
  width: 50%;
}
.indoor-cont img {
  border-radius: 20px;
  max-width: 500px;
  height: 300px;
  width: -webkit-fill-available;
  background-size: cover; /* or 'contain' */
  background-repeat: no-repeat;
  background-position: center;
}

.indoor-cont2 {
  width: 50%;
  align-items: center;
  text-align: center;
}

.indoor-cont-points h2 {
  font-size: 2rem;
  margin-bottom: 20px;
}
.indoor-cont-points p {
  line-height: 1.7;
}

.indoor-cont-points ul {
  list-style-type: square;
}
.indoor-cont-points li {
  line-height: 1.7;
}

/* ---------------- */

.cont-big-img {
  /* width: 80%; */
  margin: auto;
  /* padding: 30px 0; */
  display: flex;
  justify-content: space-between;
  padding: 0vw 18vw;
}

.cont-big-img-nest {
  width: 40vw;
  padding: 2vw 0;
}
.cont-big-img-nest2 {
  width: 40vw;
}
.cont-big-img-nest2 img {
  /* width: fit-content; */
  /* height: auto; */
  /* width: min-content;
  height: 100%; */
  width: 35vw;
  height: 100%;
}

.cont-big-img-nest h2 {
  font-size: 2rem;
}
.cont-big-img-nest p {
  line-height: 1.7;
}

.cont-banner {
  text-align: center;
  /* background-color: #61cf70; */
  padding: 30px 15vw;
}

.cont-banner h2 {
  /* color: white; */
  margin: 20px 0;
  font-size: 2.5rem;
}
.cont-banner h4 {
  /* color: white; */
  margin: 20px 0;
  font-size: 1.5rem;
}

.cont-banner p {
  padding-bottom: 30px;
  line-height: 1.7;
  /* color: white; */
}

/* ----------content banner green */
.cont-banner-green {
  text-align: center;
  background-color: #5aa445;
  padding: 30px 17vw;
}

.cont-banner-green h2 {
  color: white;
  margin: 20px 0;
  font-size: 2.5rem;
}

.cont-banner-green p {
  padding-bottom: 30px;
  line-height: 1.7;
  color: white; /* Rest of the text remains white */
}

.cont-banner-green p strong {
  font-weight: bold;
  color:#013c5a; /* Only the first line (inside <strong>) will be black */
  display: block; /* Ensures it stays on its own line */
}

/* ----------- */
.cont-boxx-main {
  /* margin: 2vw 0; */
  width: 80%;
  margin: auto;
  padding: 2vw 0;
  display: flex;
  flex-direction: column;
  /* gap: 60px; */
  text-align: center;
}

.cont-boxx-main h2 {
  margin-bottom: 20px;
  font-size: 2.2rem;
}

.cont-boxx-main p {
  line-height: 1.7;
}
.cont-boxx-uper {
  display: flex;
  /* flex-direction: r; */
  flex-wrap: wrap;
  gap: 30px;
  justify-content: space-evenly;
  /* gap: 15px; */
}
/* ------------------ */

.cont-box {
  width: 30vw;
  background-color: #d9d9d9;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  padding: 10px 20px;
}



/* Gallery Section Styles */
.gallery-section {
    padding: 20px;
    max-width: 1200px;
    margin: 0 auto;
    font-family: Arial, sans-serif;
}

.gallery-title {
    text-align: center;
    margin-bottom: 30px;
    font-size: 2em;
    color: #333;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    aspect-ratio: 1/1;
    transition: all 0.3s ease;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-item:hover {
    box-shadow: 0 8px 16px rgba(0,0,0,0.2);
}

.gallery-item:hover img {
    transform: scale(1.05);
}

/* Responsive Design */
@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .gallery-grid {
        grid-template-columns: 1fr;
    }
}













.before-after {
  /* margin: 30px 50px; */
  width: 80%;
  margin: auto;
  padding: 2vw 0;
  display: flex;
  flex-direction: row;
  justify-content: space-evenly;
  gap: 30px;
}

.before-after-box {
  width: 30%;
  text-align: center;
}
.before-after-box h2 {
  font-size: 2.5rem;
  padding-bottom: 10px;
}
.before-after-box img {
  /* width: 400px; */
  /* width:fit-content */
  width: 100%;
  /* height: 500px; */
  border-radius: 15px;
  rotate: 90deg;
}

.h2-center {
  text-align: center;
  margin: 30px 0;
  font-weight: bold;
  font-size: 2.5rem !important;
}

/* / CMMS Uper section ////// */

.cmms-section {
  padding: 20px 0;
  text-align: center;
  width: 80%;
  margin: auto;
}

.cmms-container {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

.cmms-card {
  background: white;
  border: 1px solid #ddd;
  border-radius: 10px;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
  width: 30%;
  padding: 15px;
  text-align: center;
  transition: transform 0.2s, box-shadow 0.2s;
  height: 400px;
}

.cmms-card img {
  width: 100%;
  height: 200px;
  border-radius: 5px;
  object-fit: cover;
}

.cmms-card h3 {
  margin: 20px 0;
  font-size: 18px;
  color: #000000;
  font-weight: 600;
}

.cmms-card p {
  margin: 5px 0;
  color: #555;
  font-size: 14px;
  /* text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden; */
}

.cmms-card:hover {
  transform: scale(1.005);
  /* transform: scale(1.05); */
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}
/* ----------------------new service page-------------------- */
.new-service {
  width: 80%;
  margin: auto;
}
.n-service-main {
  margin: 3rem 0;
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
}
.new-service h2 {
  text-align: center;
  font-size: 3rem;
  font-weight: 600;
  padding-top: 20px;
}
.n-service-box {
  width: 350px;
  text-align: center;
}
.n-service-box h2 {
  font-size: 1.5rem;
  font-weight: 600;
}
.n-service-box p {
  padding-bottom: 20px;
}

.n-service-box img {
  width: 350px;
  border-radius: 25px;
  border: 2px solid #5aa445;
}

/* Footer Styles-------------------- */
.footer {
  background-color: #5aa445; /*Footer background color */
  color: white;
  /* padding: 40px 20px; */
  padding: 2vw 10vw;
  font-family: Arial, sans-serif;
  text-decoration: none;
  font-size: 18px;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-column {
  width: 20%;
  /* min-width: 250px; */
}
.f-logo img {
  margin-top: 10px;
  /* max-width: 250px; */
  width: 15vw;
  height: auto;
}
.footer-column h3 {
  font-size: 22px;
  margin-bottom: 15px;
}

.footer-column p {
  font-size: 18px;
  line-height: 1.6;
}

.footer-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-column ul li {
  margin-bottom: 10px;
}

.footer-column ul li a {
  text-decoration: none;
  font-size: 18px;
  color: white;
}

.footer-column ul li i {
  font-size: 18px;
  color: white;
  margin-right: 7px;
}

.footer-column ul li a:hover {
  /* text-decoration: underline; */
  color: #003a59;
}

/* Social Icons */
.social-icons a {
  text-decoration: none;
  margin-right: 10px;
  font-size: 18px;
  transition: color 0.3s ease;
  color: white;
}

.social-icons a:hover {
  /* color: #00aaff; */
  color: #003a59;
}

.footer-copyright {
  padding: 5vw 0 0 0;
  text-align: center;
}

.footer-copyright a {
  color: white;
}
.footer-copyright a:hover {
  color: #003a59;
}

/* ---------------- blogs area---------------- */
.blog-section {
  padding: 20px;
  text-align: center;
  width: 100%;
  margin: auto;
  padding-bottom: 50px;
}
.blog-section h2 {
  font-size: 2.5rem;
  padding-bottom: 40px;
}
.blog-container {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}
.blog-card {
  background: white;
  border: 1px solid #ddd;
  border-radius: 10px;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
  width: 30%;
  padding: 15px;
  text-align: center;
  transition: transform 0.2s, box-shadow 0.2s;
}
.blog-card img {
  width: 100%;
  height: 200px;
  border-radius: 5px;
  object-fit: cover;
}
.blog-card h3 {
  margin: 10px 0;
  font-size: 18px;
  color: #000000;
}
.blog-card p {
  margin: 5px 0;
  color: #555;
  font-size: 16px;
  text-overflow: ellipsis;
  /* white-space: nowrap; */
  /* overflow: hidden; */
}
.blog-card a {
  text-decoration: none;
}
.blog-card:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}


.view-more-container {
    text-align: center;
    padding-bottom: 50px;
}
.view-more-btn {
    padding: 12px 30px;
    background-color: #4CAF50;
    color: white;
    border: none;
    border-radius: 30px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}