html {
  scroll-behavior: smooth;
}

#whyus,
#service,
#teamaction,
#testimonials,
#getquote {
  scroll-margin-top: 80px;
}

.container-fluid {
  width: 100%;
  padding: 0;
  margin: 0;
}

.commontitle {
  width: 100%;
  padding: 40px 20px;
  text-align: center;
  color: #4a4a4a;
}

.section-heading {
  font-weight: bold;
  margin-bottom: 20px;
  font-family: "Playfair Display";
  font-size: 32px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  color: #4a4a4a;
  font-family: "Playfair Display", serif;
}

/*Main section start*/
.mainImageSection {
  width: 100%;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  margin-bottom: 80px;
}

.full-width-image {
  width: 100%;
  height: auto;
  display: block;
}

.text-overlay {
  position: absolute;
  bottom: 0;
  width: 100%;
  text-align: center;
  padding: 20px;
  color: #214e10;

  text-align: center;
  text-shadow: 0px 4px 4px rgba(73, 73, 73, 0.01);
  font-family: "Playfair Display";
  font-size: 36px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}
/*Main section end*/

/*Services section start*/

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

.services__container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  gap: 20px;
}

/* General Row Structure */
.services__row {
  display: grid;
  align-items: center;
}

.services__row--three-cols {
  grid-template-columns: 1fr 1fr 1fr;
}

/* Header Column */
.services__header {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: left;
}

.services__header h2 {
  color: #000;
  font-family: "Playfair Display";
  font-size: 32px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}

/* Service Item */
.services__item {
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Image Box: Makes image cover the box & places text at the bottom */
.services__image-box {
  position: relative;
  width: 350px;
  height: 420px;
  overflow: hidden;
  border-radius: 20px;
  background: none !important;
  background-color: transparent !important;
}

.services__image-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;

  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  display: block;
}

#snowplow {
  color: #656565;
}

/* Text Overlay */
.services__image-box p {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 35px;
  margin: 0;
  text-align: center;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
  color: #fff;

  font-family: Roboto;
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}
/*Services section end*/

/*Why choose us section start*/
.subtext {
  color: #000;
  text-align: center;
  font-family: Inter;
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin-bottom: 50px;
}

.row {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  align-items: stretch;
  width: 80%;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.badge-card {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 45%;
}
.badge-card img {
  width: 80px;
  height: 100px;
  object-fit: contain;
}

.card-box {
  background-color: #fff;
  padding: 20px;
  margin-left: 35px;
  width: 320px;
  height: 150px;
  border-radius: 25px;
  background: #fff;
  box-shadow: 0px 4px 20px 1px rgba(0, 0, 0, 0.1);
  display: flex;
  justify-content: center;
  align-items: center;
}

.card-box p {
  color: #4a4a4a;
  text-align: center;
  font-family: Inter;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.5;
  margin: 0;
  padding: 25px;
}

/*Why choose us section end*/

/*----Services Code for popup-----*/
#popupOverlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  /* backdrop-filter: blur(5px); */
  background: rgba(0, 0, 0, 0.2);
  z-index: 998;
  display: none;
}

#popup {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: white;
  padding: 30px;
  border: 1px solid #ccc;
  /* box-shadow: 0 0 15px rgba(0, 0, 0, 0.3); */
  z-index: 999;
  /* width: 732px; */
  width: 90vh;
  height: auto;
  display: none;
  flex-direction: row;
  gap: 20px;
  align-items: flex-start;
  border-radius: 15px;
  overflow-y: auto;
}

.popup-img {
  width: 285px;
  height: 369px;
  border-radius: 8px;
  object-fit: cover;
}

.popup-content {
  text-align: left;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  width: 100%;
}

.popup-content button {
  margin-top: 20px;
  padding: 10px 20px;
  width: 277px;
  height: 49px;
  border: 1px solid #00945f;
  cursor: pointer;
  color: #00945f;
  background-color: white;
  border-radius: 10px;
  text-align: center;
  display: flex;
  text-decoration: none;
  justify-content: center;
  align-items: center;
}

.popup-content button:hover {
  color: white;
  background-color: #00945f;
}
#popupHeader {
  margin-top: 0;
  font-family: "Playfair Display";
  font-weight: 700;
  font-size: 18px;
}
#popupText {
  margin-top: 10px;
  font-family: "Inter";
  font-weight: 400;
  font-size: 14px;
}

.popup-content h2 {
  font-family: "Playfair Display";
  font-weight: 700;
  font-size: 18px;
}
.popup-content p {
  font-family: "Inter";
  font-weight: 400;
  font-size: 14px;
}

/*Services hover effect*/
.hoverImage:hover {
  transform: scale(1.02);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
}

/*Code for FAQ accordian*/
#faqContent {
  max-height: 300px;
  width: 100%;
  margin-top: 20px;
  overflow-y: auto;
}

.accordion {
  width: 100%;
}

.accordion-item {
  margin-bottom: 10px;
  border-radius: 6px;
  overflow: hidden;
  background: #f9f9f9;
}

.accordion h2 {
  font-family: "Inter";
  font-size: 14px;
  font-weight: 500;
}

.accordion-header {
  background: none;
  border: none;
  text-align: left;
  padding: 12px 16px;
  font-weight: 600;
  cursor: pointer;
  box-sizing: border-box;
}

.accordion-button:focus {
  outline: none;
  box-shadow: none;
}
/* Show/hide body */
.accordion-body {
  display: none;
  padding: 12px 16px;
  background: #fff;
  font-size: 14px;
  font-weight: 400;
}

.accordion-item.active .accordion-body {
  display: block;
}
