@charset "UTF-8";
.hero-features {
  display: flex;
  color: #000;
  gap: 23px;
  animation: fadeInUp 1s ease 0.6s both;
}
a.default-btn.two {
  background: #fff;
  border: #018e49 solid 3px;
  border-radius: 0 13px 13px 0;
  color: #018e49;
}
a.default-btn.two:hover {
  background: #13287c;
  border: #018e4966 solid 3px;
  border-radius: 0 13px 13px 0;
  color: #fff;
}
#jf-whatsapp-float {
  position: fixed;
  bottom: 25px;
  right: 25px;
  width: 65px;
  height: 65px;
  background: #25d366;
  color: #fff;
  border-radius: 50%;
  box-shadow: 0 6px 20px rgb(37 211 102 / 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  cursor: pointer;
  animation: pulse 2s infinite;
  transition: transform 0.3s ease;
}
#jf-whatsapp-float:hover {
  transform: scale(1.15);
}
@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgb(37 211 102 / 0.6);
  }
  70% {
    box-shadow: 0 0 0 20px #fff0;
  }
  100% {
    box-shadow: 0 0 0 0 #fff0;
  }
}
@media (max-width: 1800px) {
  .cleaner {
    display: none !important;
  }
}
.features-bg {
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  width: 49%;
  overflow: hidden;
  z-index: 0;
  background-color: #000;
}
.features-bg iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
  object-fit: cover;
  pointer-events: none;
}
.features-bg {
  background-image: url(../uploads/6.png);
}
.gallery {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}
.project-item {
  position: relative;
  width: 300px;
  cursor: pointer;
}
.project-item img {
  width: 100%;
  display: block;
  border-radius: 8px;
}
.project-item .play-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 48px;
  color: #fff;
  opacity: 0.8;
  pointer-events: none;
}
.project-item h3 {
  margin-top: 8px;
  font-size: 16px;
  text-align: center;
}
.modal {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgb(0 0 0 / 0.85);
  justify-content: center;
  align-items: center;
  padding: 20px;
  box-sizing: border-box;
}
.modal-content {
  position: relative;
  width: 100%;
  max-width: 1400px;
  background: #000;
  border-radius: 10px;
  overflow: hidden;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.modal-content #modal-body {
  width: 100%;
  height: 100%;
  position: relative;
}
.modal-content iframe,
.modal-content img {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  object-fit: contain;
}
.close {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 32px;
  font-weight: 700;
  color: #fff;
  cursor: pointer;
  z-index: 100;
  transition: color 0.2s;
}
.close:hover {
  color: red;
}
.service-icon {
  padding-top: 7px;
}
.modal_txt {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgb(0 0 0 / 0.7);
  overflow: auto;
  font-family: "Arial", sans-serif;
}
.modal_txt .modal-content {
  background-color: #fff;
  margin: 5% auto;
  padding: 30px;
  border-radius: 12px;
  max-width: 600px;
  box-shadow: 0 8px 30px rgb(0 0 0 / 0.4);
  position: relative;
}
.modal_txt .scroll-modal {
  max-height: 80vh;
  overflow-y: auto;
  padding-right: 15px;
}
.modal_txt .close {
  color: #333;
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 28px;
  font-weight: 700;
  cursor: pointer;
}
.modal_txt .close:hover {
  color: #d32f2f;
}
.modal_txt h3 {
  margin-top: 0;
  color: #d32f2f;
  font-size: 22px;
}
.modal_txt p,
.modal_txt ul {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 15px;
}
.modal_txt ul {
  padding-left: 20px;
}
.modal_txt button {
  background: #d32f2f;
  color: #fff;
  padding: 10px 20px;
  border-radius: 6px;
  border: none;
  cursor: pointer;
  margin-top: 15px;
}
.modal_txt button:hover {
  background: #b71c1c;
}
@media (max-width: 768px) {
  .modal-content {
    width: 100%;
    height: 100%;
    border-radius: 0;
  }
}
