/* 6 Bots */
h2 {
  font-size: 28px;
  margin-bottom: 10px;
}

.description {
  font-size: 16px;
  max-width: 700px;
  margin: 0 auto 40px;
}

.bot-container {
  position: relative;
  max-width: 1190px;
  height: 600px;
  margin: 0 auto;
}

.center-content {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 350px;
  height: 350px;
  background: linear-gradient(
    129.4deg,
    #2362bf 4.88%,
    #4a3c94 46.78%,
    #843d94 88.68%
  );
  color: #fff;
  font-size: 18px;
  line-height: 1.5;
  border-radius: 50%;
  padding: 30px;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  transition: all 0.4s ease-in-out;
  z-index: 1;
  flex-flow: column;
  border: 10px solid #dceaff;
}

.center-content:after {
  content: "";
  display: block;
  background: transparent;
  width: calc(100% + 80px);
  height: calc(100% + 80px);
  border: 2px dashed #dfdfdf;
  position: absolute;
  border-radius: 100%;
  padding: 35px;
}
.center-content:before {
  content: "";
  display: block;
  background: transparent;
  border-top: 3px solid #ffffff;
  width: calc(100% + 80px);
  height: calc(100% + 80px);
  padding: 35px;
  position: absolute;
  border-radius: 100%;
  z-index: 1;
}

.bot {
  position: absolute;
  width: max-content;
  height: 80px;
  border-radius: 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 15px;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.bot-icon {
  width: 80px;
  height: 80px;
  background: #f8f8f8;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}
.bot.active .bot-icon {
  background: #f2fdff;
  box-shadow: 10px 0 50px #4e85d64a;
}
.bot-icon img {
  filter: grayscale(1);
}
.bot.active .bot-icon img {
  filter: grayscale(0);
}

.bot-label {
  font-size: 19px;
  font-weight: 600;
  flex: 1;
  margin-left: 10px;
  margin-right: 10px;
  text-align: left;
}

.dot {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #ccc;
  position: absolute;
  z-index: 2;
  border: 2px solid #ccc;
}

.dot.active {
  background: #2362bf;
  border-color: #2362bf;
}

/* Left bots & dots */
.bot.left-3 {
  top: 12%;
  left: 0;
}
.bot.left-2 {
  top: 42%;
  left: 0;
}
.bot.left-1 {
  top: 72%;
  left: 6%;
}

.dot.left-3 {
  top: 23%;
  left: calc(38% - 4px);
}
.dot.left-2 {
  top: 47%;
  left: calc(34% - 24px);
}
.dot.left-1 {
  top: 70%;
  left: calc(37% - 12px);
}

/* Right bots & dots */
.bot.right-1 {
  top: 12%;
  right: 8%;
}
.bot.right-2 {
  top: 42%;
  right: 5%;
}
.bot.right-3 {
  top: 72%;
  right: 4%;
}

.dot.right-1 {
  top: 23%;
  right: calc(38% - 7px);
}
.dot.right-2 {
  top: 47%;
  right: calc(34% - 25px);
}
.dot.right-3 {
  top: 70%;
  right: calc(37% - 15px);
}

.bot-description {
  display: none;
}
.bot-content {
  display: contents;
}

a#readMoreBtn {
  z-index: 2;
  position: relative;
  background: #ffffff;
  text-decoration: none;
  color: #000000;
  padding: 8px 25px;
  margin-top: 15px;
  background-color: #ffffff;
  font-size: 16px;
  /* background-image: linear-gradient(99deg, #5A8FDD -19.08%, #2362BF 118.48%); */
  border-radius: 8px;
}
.dhav-readmore {
  display: none;
}

/* Mobile/Tablet Responsive Layout */
@media (max-width: 1150px) {
  .bot-container {
    height: auto;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    gap: 20px;
  }
  .bot-container .bot {
    text-align: center;
    display: inline-block;
    flex: 0 0 48%;
  }
  .bot-icon img {
    filter: grayscale(0);
  }

  .center-content,
  .dot {
    display: none;
  }

  .bot {
    position: static;
    width: 100%;
    max-width: 600px;
    height: auto;
    border-radius: 10px;
    background: #f9f9f9;
    flex-direction: row;
    align-items: flex-start;
    padding: 15px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  }

  .bot .bot-label {
    margin-left: 0;
    margin-right: 0;
    text-align: left;
    font-size: 16px;
    order: 2;
  }

  .bot-description {
    font-size: 14px;
    color: #555;
    margin-top: 8px;
    text-align: left;
    flex: 1;
    display: inline-block;
    width: 100%;
    order: 2;
  }
  .bot-description a {
    color: #2362bf;
    display: block;
  }

  .bot .bot-icon {
    width: 50px;
    height: 50px;
    font-size: 18px;
    order: 1;
  }

  .bot-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }
}
@media (max-width: 992px) {
  .bot-container {
    flex-direction: column;
  }
  .bot-container .bot {
    flex: 0 0 100%;
  }
}

.bot.right-1,
.bot.right-2,
.bot.right-3 {
  display: flex;
}
.bot.right-1 .bot-label,
.bot.right-2 .bot-label,
.bot.right-3 .bot-label {
  order: 2;
}

/* Team Members Widget */
.vbots-team-members {
  display: flex;
  flex-wrap: wrap;
  gap: 35px;
}
.team-member {
  flex: 1 1 22%;
  padding: 0;
  text-align: center;
  position: relative;
  transition: all 0.3s ease;
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgb(0 0 0 / 12%);
  border-radius: 8px;
}
.team-image-wrapper {
  position: relative;
  display: inline-block;
}
.team-member h3 {
  font-size: 23px;
  font-weight: 700;
  margin-top: 15px;
}
.team-member p {
  margin-bottom: 15px;
  color: #2362bf;
  font-size: 15px;
  font-weight: 500;
}
.team-image-wrapper img {
  transition: opacity 0.3s ease;
}
.team-social-icons {
  position: absolute;
  top: auto;
  bottom: 10px;
  left: 0;
  right: 0;
  opacity: 0;
  transition: all 0.3s ease;
  gap: 10px;
}
.team-social-icons a {
  color: #0073aa;
  background-color: #ffffff;
  padding: 10px;
  border-radius: 3px;
  font-size: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}
.team-image-wrapper:hover .team-social-icons {
  opacity: 1;
}
/* Single Resources Styles */
.site-content.resources-single {
  padding-bottom: 60px;
}
.resources-single h1 {
  font-size: 32px;
  margin-bottom: 25px;
}
.esi-blog-taxonomy.author span.author-term:after {
  content: "|";
  margin-left: 10px;
  margin-right: 7px;
}
.site-content.resources-single .post-featured-image img {
  border-radius: 10px;
  margin-bottom: 25px;
  width: 100%;
}
.resources-single .post-featured-image {
  position: relative;
}
.resources-title-banner {
  padding: 80px 0;
  text-align: center;
}

.resources-single .esi-blog-taxonomy.blog-type {
  display: inline-block;
  width: auto;
  margin-bottom: 15px;
}
.resources-single .esi-blog-taxonomy.blog-type span.blog-type-term {
  background: #2362bf;
  color: #ffffff;
  padding: 5px 20px;
  border-radius: 5px;
  font-size: 15px;
}
.site-content.resources-single .esi-blog-taxonomy.services span.service-term {
  margin-top: 0;
  background: #843d94;
  color: #ffffff;
  padding: 0 10px;
  display: inline-block;
  border-radius: 8px;
  font-size: 14px;
  margin-bottom: 20px;
}
.resources-breadcrumb a,
.resources-breadcrumb span {
  display: inline-block;
  width: auto;
  margin: 0 10px;
}
.site-content.resources-single main#main-content a {
  display: inline-block;
  color: #2362bf;
}
.resources-breadcrumb {
  display: inline-block;
  width: 100%;
  margin-bottom: 15px;
}
.resources-sidebar.info-widget {
  border: 1px solid #e7e7e7;
  padding: 20px;
  background: #f7f7f7;
  border-radius: 10px;
  margin-bottom: 20px;
}
.resources-sidebar.info-widget p {
  font-size: 15px;
}
.resources-sidebar.info-widget a {
  display: inline-block;
  color: #ffffff;
  border-radius: 10px;
  background-color: transparent;
  font-size: 15px;
  background-image: linear-gradient(160deg, #2362bf 0%, #843d94 100%);
  border-radius: 16px 16px 16px 16px;
  padding: 8px 20px 8px 20px;
}
.vbots-sticky-sidebar {
  position: -webkit-sticky !important;
  position: sticky !important;
  top: 150px;
  align-self: start;
}

@media (max-width: 500px) {
  .resources-single h1 {
    font-size: 20px;
  }
  .resources-title-banner {
    padding: 40px 0;
  }
}
/* Thank You page */
a.lnk-button.black-btn {
  background-color: transparent;
  font-size: 16px;
  background-image: linear-gradient(99deg, #5A8FDD -19.08%, #2362BF 118.48%);
  border-radius: 16px 16px 16px 16px;
  padding: 10px 30px 10px 30px;
}
a.lnk-button.black-btn:hover,
a.lnk-button.black-btn:focus {
  color: #ffffff;
}
/* Static Bots section */
.static-bots-section .bot-content .bot-description {
    display: inline-block;
    font-size: 15px;
    line-height: 1.5;
    color: #6d6d6d;
}
.static-bots-section .bot-label {
    margin: 0;
}
.static-bots-section .bot-label-wrap {
    margin-left: 15px;
    width: calc(100% - 80px);
}
.bot-static {
  position: absolute;
  width: max-content;
  max-width: 385px;
  height: auto;
  border-radius: 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 15px;
  cursor: inherit;
  transition: transform 0.3s ease;
}
.bot-static.left-3 {
  top: 12%;
  left: 0;
}
.bot-static.left-2 {
  top: 42%;
  left: 0;
}
.bot-static.left-1 {
  top: 72%;
  left: 4%;
}
/* Right bots & dots */
.bot-static.right-1 {
  top: 12%;
  right: 4%;
}
.bot-static.right-2 {
  top: 40%;
  right: 0%;
}
.bot-static.right-3 {
  top: 72%;
  right: 4%;
}

.static-bots-section .bot-static.left-3 .bot-icon,
.static-bots-section .bot-static.left-2 .bot-icon,
.static-bots-section .bot-static.left-1 .bot-icon {
    order: 2;
}
.static-bots-section .bot-static.left-3 .bot-label-wrap,
.static-bots-section .bot-static.left-2 .bot-label-wrap,
.static-bots-section .bot-static.left-1 .bot-label-wrap {
  margin-right: 15px;
  text-align: right;
}
.static-bots-section .bot-static.left-3 {
    top: 12%;
    left: 5%;
}
.static-bots-section .bot-static.left-2 {
    top: 40%;
    left: 0%;
}
.static-bots-section .bot-static.left-3 .bot-label,
.static-bots-section .bot-static.left-2 .bot-label,
.static-bots-section .bot-static.left-1 .bot-label {
  text-align: right;
}
.static-bots-section .center-content {
  border: 10px solid #ffffff;
  box-shadow: none;
}
.static-bots-section .bot-icon img {
  filter: grayscale(0);
}
.static-bots-section .bot-icon {
  background: #f2fdff;
  box-shadow: 10px 0 50px #4e85d64a;
}
.static-bots-section .dot {
    background: #4f86d8;
    border-color: #4f86d8;
}
@media (max-width: 1150px) {
  .bot-container .bot-static {
    text-align: center;
    display: inline-block;
    flex: 0 0 48%;
  }
  .bot-icon img {
    filter: grayscale(0);
  }

  .center-content,
  .dot {
    display: none;
  }

  .bot-static {
    position: static;
    width: 100%;
    max-width: 600px;
    height: auto;
    border-radius: 10px;
    background: #f9f9f9;
    flex-direction: row;
    align-items: flex-start;
    padding: 15px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  }

  .bot-static .bot-label {
    margin-left: 0;
    margin-right: 0;
    text-align: left;
    font-size: 16px;
    order: 2;
  }

  .bot-static .bot-icon {
    width: 50px;
    height: 50px;
    font-size: 18px;
    order: 1;
  }

  .bot-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }
  .static-bots-section .bot-static.left-3 .bot-label, 
  .static-bots-section .bot-static.left-2 .bot-label, 
  .static-bots-section .bot-static.left-1 .bot-label {
    text-align: left;
  }
  .static-bots-section .bot-static .bot-label-wrap, 
  .static-bots-section .bot-static .bot-label-wrap, 
  .static-bots-section .bot-static .bot-label-wrap {
    order: 2;
    margin-left: 0;
  }
  .static-bots-section .bot-icon {
    box-shadow: none;
    margin-bottom: 10px;
  }
}
@media (max-width: 992px) {
  .bot-container {
    flex-direction: column;
  }
  .bot-container .bot-static {
    flex: 0 0 100%;
  }
}

/* Blockquote Stylings */
.blockquote-section {
    max-width: auto;
    margin: 40px auto;
    padding: 30px;
    background: #f9f9f9;
    border-left: 5px solid #4A90E2;
    position: relative;
    font-family: "Segoe UI", sans-serif;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    border-radius: 16px;;
  }

  .blockquote-section .quote-icon {
    font-size: 30px;
    color: #4A90E2;
    position: absolute;
    top: 20px;
    left: 20px;
  }

  .blockquote-section blockquote {
    margin: 0;
    padding-left: 50px;
    font-style: italic;
    color: #333;
    position: relative;
  }

  .author-info {
    display: flex;
    align-items: center;
    margin-top: 20px;
    padding-left: 50px;
  }

  .author-info img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 15px;
    border: 2px solid #4A90E2;
  }

  .author-info .details {
    line-height: 1.2;
  }

  .author-info .details .name {
    font-weight: 600;
    color: #222;
  }

  .author-info .details .designation {
    font-size: 14px;
    color: #666;
  }
  .blockquote-section blockquote::before, .blockquote::before {
    color: #2362BF;
    content: "\f10d";
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-15px);
    z-index: -1;
    font-family: "Font Awesome 5 Free";
    font-size: 50px;
    font-weight: 900;
}
.blockquote-section blockquote {
  padding: 20px 30px 20px 90px !important;
  text-align: left;
  background: #f4f4f4;
  border-radius: 16px;
  font-size: 17px;
}
.quote-author-wrap img {
    display: none;
}
.quote-author-wrap {
    margin-top: 10px;
}
/* Interactive Bots - New  */
#interactive-section {
  display: flex;
  margin: 0 auto;
  gap: 40px;
  align-items: flex-start;
}
#interactive-section .text-col { flex: 1; }
#interactive-section .image-col {
  flex: 1;
  position: sticky;
  top: 100px;
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
}
#interactive-section .image-col img {
  position: absolute;
  max-width: 100%;
  height: auto;
  opacity: 0;
  transition: opacity 0.6s ease;
  padding: 10px;
  box-shadow: 10px 0 50px #e8e8e8;
  border-radius: 16px;
}
#interactive-section .image-col img.active { opacity: 1; }
.step-text {
  margin: 60px 0;
  padding: 20px;
  background: #fff;
  border-radius: 12px;
}
.bots-flow {
  display: flex;
  flex-wrap: wrap;
}
.bots-flow .flow-item {
  display: flex;
  width: 28%;
  background: #f7f7f7;
  padding: 5px;
  margin: 0 25px 10px 0;
  text-align: center;
  font-size: 16px;
  justify-content: center;
  align-items: center;
  border-radius: 5px;
  position: relative;
}
.bots-flow .flow-item:after {
  content: "→";
  display: block;
  position: absolute;
  width: 10px;
  height: 10px;
  right: -14px;
  top: 50%;
  transform: translateY(-12px);
}
.bots-flow .flow-item:nth-child(3):after,
.bots-flow .flow-item:last-child:after {
  display: none;
}
.step-text h5 { color: #843D94; font-weight: 500; margin-bottom: 15px; }
.step-text h3 { margin-bottom: 25px; }
.step-text img {display: none;}
@media(max-width: 900px) {
  #interactive-section {
    flex-direction: column;
  }
  #interactive-section .image-col {
    display: none; /* hide sticky image column */
  }
  .step-text img {
    display: block;
    max-width: 100%;
    margin-top: 15px;
    border-radius: 12px;
  }
}