html,
body {
  margin: 0;
  padding: 0;
  font-family: "Parkinsans", sans-serif;
}
html {
  scroll-behavior: smooth;
}
p,
h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  padding: 0;
}
.main {
  flex-grow: 1;
}
header {
  height: 75px;
  padding: 0px 48px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.logo-container {
  width: 40px;
}
.logo-img {
  width: 100%;
  height: 100%;
}
.logo-link{
  display: flex;
  gap: 1px;
  align-items: center;
  text-decoration: none !important;
}
.logo-name {
  font-size: 22px;
  font-weight: 600;
  color: black;
  /* background: linear-gradient(to right, #0026C0, #37AFF7);
    -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif; */
}
.title {
  font-size: 52px;
  font-weight: 600;
  padding: 0px 48px;
}
.subtitle {
  font-size: 18px;
  font-weight: 400;
  padding: 0px 48px;
  margin-top: 36px;
}
.button-container {
  margin-top: 36px;
  padding: 0px 48px;
  display: flex;
  gap: 12px;
  justify-content: start;
}
.btn-1 {
  padding: 12px 24px;
  background-color: black;
  border: 1px solid black;
  border-radius: 25px;
  color: #fff;
  cursor: pointer;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease-in-out;
}
.btn-1:hover {
  background-color: transparent;
  color: black;
}
.btn-2 {
  padding: 12px 24px;
  background-color: transparent;
  border: 1px solid black;
  border-radius: 25px;
  color: black;
  cursor: pointer;
  font-size: 16px;
  font-weight: 600;
  transition: all 0.3s ease-in-out;
}
.btn-2:hover {
  background-color: black;
  color: white;
}
.main-container {
  display: flex;
}
.left-container {
  width: 50%;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  /* align-items: center; */
  position: relative;
}
.blury-container {
  width: 200px;
  height: 200px;
  transform: rotate(45deg);
  /* background-color: #37aff7; */
  /* background-color: #ff3232; */
  background-color: #00f043;
  /* background: linear-gradient(to right, #0026C0, #37AFF7); */
  z-index: -1;
  position: absolute;
  top: 25%;
  left: 10%;
  filter: blur(150px);
}
.blury-container2 {
  width: 120px;
  height: 120px;
  transform: rotate(45deg);
  /* background-color: #ff3232; */
  background-color: #00f043;
  /* background: linear-gradient(to right, #0026C0, #37AFF7); */
  z-index: -1;
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  margin: auto;
  filter: blur(120px);
}
.right-container {
  width: 50%;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}
.hero-img-conatiner {
  position: relative;
  width: 30vw;
}
.hero-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 10px;
}
.moving-img-container {
  position: absolute;
  top: -80px;
  left: -120px;
  width: 200px;
  border-radius: 10px;
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.2);
  background-color: white;
  animation: moveLeftRight 4s ease-in-out infinite alternate;
}
.moving-img-container2 {
  position: absolute;
  bottom: -20px;
  right: -80px;
  width: 200px;
  border-radius: 10px;
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.2);
  background-color: white;
  animation: moveLeftRight2 4s ease-in-out infinite alternate;
}
@keyframes moveLeftRight {
  0% {
    left: -140px;
  }
  100% {
    left: -80px;
  }
}
@keyframes moveLeftRight2 {
  0% {
    right: -120px;
  }
  100% {
    right: -60px;
  }
}
.nav-item {
  cursor: pointer;
  font-size: 16px;
  font-weight: 400;
  text-decoration: none;
  color: black;
}
.nav-item-active {
  color: #37aff7;
}
.nav-item:hover {
  color: #37aff7;
}
.features-conatiner {
  padding-block: 48px;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  /* padding-inline: 48px; */
}
.leads-integration-conatiner {
  position: relative;
  padding-block: 48px;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.leads-main-container {
  display: flex;
  justify-content: center;
  padding-inline: 48px;
  margin-top: 36px;
  width: calc(100% - 96px);
}
.leads-container {
  flex: 1;
  box-shadow: 0px 0px 10px 0px rgba(119, 119, 119, 0.2);
  border-radius: 10px;
  padding: 24px 12px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 12px;
  align-items: center;
  margin: 10px;
}
.leads-img-container {
  width: 50px;
}
.leads-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.leads-name {
  font-size: 20px;
  font-weight: 600;
  text-align: center;
}
.leads-desc {
  font-size: 14px;
  font-weight: 400;
  color: grey;
}
.text-center {
  text-align: center;
}
.color-1 {
  background-color: #e6f5ff;
}
.color-2 {
  background-color: #ffeeee;
}
.color-3 {
  background-color: #f9ebff;
}
.color-4 {
  background-color: #e7ffff;
}
.color-5 {
  background-color: #fff2e8;
}
.features-top-container {
  justify-content: center;
  align-items: center;
}
.features-left-conatiner {
  width: 50%;
}
.make-center {
  display: flex;
  justify-content: center;
  align-items: center;
}
.apply-padding {
  padding-inline: 48px;
}
.features-right-conatiner {
  width: 50%;
}
.feature1-img-container {
  width: 35vw;
}
.feature1-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.title-1 {
  font-size: 36px;
  font-weight: 600;
}
.title-2 {
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 24px;
}
.subtitle-1 {
  font-size: 18px;
  font-weight: 400;
  margin-top: 24px;
}
.subtitle-2 {
  font-size: 18px;
  font-weight: 600;
  margin-top: 24px;
  color: dodgerblue;
}

.fade-up {
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.9s ease;
}

.fade-up.show {
  opacity: 1;
  transform: translateY(0);
}
.icon-container {
  font-size: 32px;
  font-weight: 600;
}
footer {
  /* background-image: url("sanyog_public/images/rainbow-bg.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat; */
  /* background: linear-gradient(to bottom, #e6f5ff, #5dc1ff); */
  background: linear-gradient(
    to right,
    #ffd6d6,
    #e2f8e1,
    #d8f9f9,
    #e4f7fb,
    #e5f1fc,
    #dfebff,
    #dde4ff,
    #e0e0f9
  );
}
.footer-top-container {
  display: flex;
  justify-content: space-between;
  padding-inline: 48px;
  padding-block: 24px;
}
.footer-bottom-container {
  display: flex;
  justify-content: space-between;
  padding-inline: 48px;
  padding-block: 24px;
}
.footer-links {
  cursor: pointer;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  color: black;
  width: max-content;
}
.footer-links:hover {
  /* color: #37aff7; */
  text-decoration: underline;
}
.footer-links-1 {
  font-size: 14px;
  font-weight: 400;
  text-decoration: none;
  color: black;
}
.footer-title {
  font-size: 18px;
  font-weight: 600;
}
.footer-menu-container {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.hr-line {
  width: calc(100% - 96px);
  height: 1px;
  margin-inline: 48px;
  background-color: rgb(200, 200, 200);
}
.demo-conatiner {
  padding-inline: 48px;
  padding-block: 24px;
}
.demo-video-container {
  width: 45%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.demo-main-container {
  width: 55%;
  display: flex;
  flex-direction: row;
  justify-content: center;
  gap: 24px;
  /* padding-inline: 48px; */
}
.demo-link-container-1 {
  margin-top: 12px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.demo-link-container-1 > a {
  background-color: #dbf1ff;
  width: max-content;
  padding: 10px;
  cursor: pointer;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 500;
  min-width: 180px;
  text-decoration: none;
  transition: all 0.3s ease-in-out;
}
.demo-link-container-1 > a:hover {
  background-color: #37aff7;
  color: white;
}
.demo-link-container-2 {
  margin-top: 12px;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 8px;
}
.demo-link-container-2 > a {
  background-color: #dbf1ff;
  width: max-content;
  padding: 10px;
  cursor: pointer;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 500;
  min-width: 180px;
  text-decoration: none;
  transition: all 0.3s ease-in-out;
}
.demo-link-container-2 > a:hover {
  background-color: #37aff7;
  color: white;
}
.demo-link-title {
  font-size: 14px;
  font-weight: 600;
  color: #37aff7;
}
.source-img-container {
  display: flex;
  flex-direction: row;
  gap: 8px;
  align-items: center;
}
.source-img {
  width: 35px;
  height: 35px;
  object-fit: contain;
}
.source-img-2 {
  width: 25px;
  height: 25px;
  object-fit: contain;
  padding-top: 4px;
}
.source-img-3 {
  width: 30px;
  height: 30px;
  object-fit: contain;
  padding-top: 4px;
  padding-right: 4px;
}
dialog {
  border: none;
  border-radius: 8px;
  padding: 20px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  width: 70vw;
  height: 75vh;
}
dialog#myDialog {
  border: none;
}

dialog#myDialog iframe {
  width: 100%;
  height: calc(100% - 50px);
  border: none;
  border-radius: 10px;
}
.dialog-close-icon {
  border: none;
  outline: none;
  font-size: 20px;
  background-color: transparent;
  cursor: pointer;
}
.dropdown {
  position: relative;
  display: inline-block;
}

.dropdown-link {
  font-weight: bold;
  cursor: pointer;
  padding: 10px;
  display: inline-block;
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: white;
  padding: 10px;
  min-width: 200px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  border-radius: 4px;
  z-index: 1000;
}

.dropdown:hover .dropdown-content {
  display: block;
}

.dropdown-content ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

/* .dropdown-content ul li > a {
  padding: 8px 10px;
  white-space: nowrap;
  cursor: pointer;
  font-size: 13px;
} */
.feature-link{
    padding: 8px 10px !important;
  white-space: nowrap;
  cursor: pointer;
  font-size: 13px;
  text-decoration: none;
  color: black;
  display: block;
}

.feature-link:hover {
  background-color: #f0f0f0;
}
@media only screen and (max-width: 576px) {
  header {
    padding: 0px 24px;
  }
  .main-container {
    flex-direction: column;
  }
  .left-container {
    width: 100%;
    height: max-content;
  }
  .right-container {
    display: none;
  }
  .logo-name {
    display: none;
  }
  .title {
    font-size: 36px;
    font-weight: 600;
    padding: 0px 24px;
  }
  .subtitle {
    font-size: 16px;
    padding: 0px 24px;
  }
  .features-conatiner {
    padding-block: 24px;
    display: flex;
    flex-direction: column;
  }
  .features-left-conatiner {
    width: 90%;
  }
  .features-right-conatiner {
    width: 90%;
  }
  .leads-main-container {
    display: flex;
    flex-direction: column;
  }
  .button-container {
    margin-bottom: 36px;
    padding: 0px 24px;
  }
  .feature1-img-container {
    width: 70vw;
  }
  .apply-padding {
    padding-inline: 0px;
  }
  .reverse-container {
    flex-direction: column-reverse;
  }
  .footer-top-container {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 12px;
    padding-inline: 24px;
  }
  .footer-bottom-container {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 12px;
    padding-inline: 24px;
  }
  .hr-line {
    width: calc(100% - 48px);
    margin-inline: 24px;
  }
}
