/* styles.css */

body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  background-color: #f4f4f4;
  color: #333;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  background-image: url(bg.jpg);
  background-size: cover;
  /* background-repeat: no-repeat; */
}

header {
  /* background-color: #4caf50; */
  /* background-color: darkslategrey; */
  width: 100%;
  padding: 20px 0;
  text-align: center;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  /* position: fixed; */
  z-index: 1;
}

header h1 {
  margin: 0;
  margin-right: 20px;
}
.header-contact {
  position: absolute;
  top: 100px;
  right: 100px;
  color: red;
  font-size: 30px;
  background-color: white;
}
.header-img {
  /* margin-top: 80px; */
}

main {
  padding: 20px;
  width: 80%;
  max-width: 1200px;
  /* margin-top: 80px; */
}

.about h2,
.container h3 {
  /* color: #4caf50; */
  color: teal;
  margin-top: 40px;
}
/* h2 {
} */

.container {
  margin-top: 20px;
}
.about-container {
  /* background-color: red; */
  background-color: honeydew;
  border: 1px solid lightcoral;
  border: 1px solid #ddd;
  border-radius: 5px;
  padding: 15px;
  margin-top: 30px;
}
.products {
  /* background-color: red; */
  /* background-color: honeydew; */
  /* border: 1px solid lightcoral; */
  /* border: 1px solid #ddd; */
  border-radius: 5px;
  padding: 15px;
  margin-bottom: 20px;
}

.products p {
  margin: 5px 0;
}
.product-heading {
  color: blue;
  text-align: center;
  margin-bottom: 20px !important;
}

.contact-us {
  margin-top: 20px;
  background-color: #e7f3e7;
  border: 1px solid #4caf50;
  border-radius: 5px;
  padding: 15px;
  text-align: center;
}

.contact-us p {
  margin: 5px 0;
}
.product-details {
  display: flex;
}
.slide3 {
  width: 594px !important;
}
/* Slider////////// */

.slider {
  position: relative;
  width: 100%;
  /* width: 80%; */
  overflow: hidden;
  /* margin-left: 10%; */
}

.slides {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.slide {
  width: 100%;
  transition: opacity 1s;
}

.button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(0, 0, 0, 0.5);
  color: white;
  border: none;
  padding: 10px;
  cursor: pointer;
  z-index: 1;
}

.prev {
  left: 0;
}
.next {
  right: 0;
}

/* .know-more {
  background-color: rgba(0, 0, 0, 0.5);
  color: white;
  border: none;
  padding: 10px;
  cursor: pointer;
  margin-left: 45%;
} */
.callIcon {
  position: absolute;
  top: 115px;
  left: 90px;
  width: 25px;
  height: 25px;
  background-image: url(call_Icon.jpg);
  background-size: contain;
  background-repeat: no-repeat;
}
@media (max-width: 768px) {
  .callIcon {
    top: 135px;
    left: 90px;
  }
}

.callNow {
  background-color: rgba(0, 0, 0, 0.5);
  color: white;
  border: none;
  padding: 10px;
  /* cursor: pointer; */
  max-width: 170px;
  margin-left: 40% !important;
  margin-top: 10px !important;
}
@media (max-width: 768px) {
  .callNow {
    cursor: pointer;
    margin-left: 50px !important;
  }
}

/* pouup */

/* popup-container {
  font-family: Arial, sans-serif;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  margin: 0;
  background-color: #f0f0f0;
}

button {
  padding: 10px 20px;
  font-size: 16px;
  cursor: pointer;
}

.popup {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  justify-content: center;
  align-items: center;
}

.popup-content {
  background-color: white;
  padding: 20px;
  border-radius: 5px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  position: relative;
  text-align: center;
}

.close-btn {
  position: absolute;
  top: 10px;
  right: 10px;
  font-size: 24px;
  cursor: pointer;
} */
