
@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Pacifico&family=Rubik:ital,wght@0,300..900;1,300..900&display=swap');

.pacifico-regular {
  font-family: "Pacifico", cursive;
  font-weight: 400;
  font-style: normal;
}

/* --- chat wrapper inherits absolute coords from .shape_01 --- */
.chat-wrapper{
   width:360px;          /* similar footprint to old PNG */
   pointer-events:none;  /* stays decorative            */
}

/* CHAT LAYOUT  */
.chat-seq{ list-style:none; margin:0; padding:0; position:relative; }
.msg{ position:absolute; display:flex; gap:12px; align-items:flex-start; opacity:0; }
.msg.left  { left:0;  }
.msg.right { right:0; flex-direction:row-reverse; }

/* vertical offsets that match your screenshot */
.msg:nth-child(1){ top:20px; }
.msg:nth-child(2){ top:160px; }
.msg:nth-child(3){ top:310px; }

/* avatars */
.avatar{
  width:36px; aspect-ratio:1; border-radius:50%; object-fit:cover;
  box-shadow:0 2px 4px rgba(0,0,0,.25);
  flex:none;
}

/* bubbles */
.bubble{
  max-width:240px;
  padding:12px 16px;
  border-radius:8px;
  box-shadow:0 6px 18px rgba(0,0,0,.18);
  font:15px/1.4 "Inter",sans-serif;
}
.msg.left  .bubble{ background:#ffffff; color:#000; }
.msg.right .bubble{ background:#ffe700; color:#000; }

/* slide-in keyframes */
@keyframes slideLeft { from{transform:translateX(-40px);opacity:0;} to{transform:none;opacity:1;} }
@keyframes slideRight{ from{transform:translateX( 40px);opacity:0;} to{transform:none;opacity:1;} }
.msg.left.show  { animation:slideLeft 0.7s forwards; }
.msg.right.show { animation:slideRight 0.7s forwards; }
.block-feature-eleven.avatar-feat .feature-block h3{
    font-size: 28px;
    margin:20px 0px;
}

/** animations  **/
/* Base hidden state (like .wow) */
.sal {
  visibility: hidden;
  opacity: 0;
  transition: all 0.6s ease;
}

/* When in viewport — trigger animation */
.sal-animate {
  visibility: visible;
  opacity: 1;
}

.sal-skew-in.sal-animate {
  animation: skewIn 0.6s ease forwards;
}
/* Skew In Keyframes (like WOW skewIn) */
@keyframes skewIn {
  0% {
    opacity: 0;
    transform: skew(-20deg) translateY(40px);
  }
  100% {
    opacity: 1;
    transform: skew(0deg) translateY(0);
  }
}

/* Animations */
.sal-slide-up.sal-animate {
  transform: translateY(0);
  animation: slide-up 0.9s ease forwards;
}

.sal-slide-down.sal-animate {
  transform: translateY(0);
  animation: slide-down 0.9s ease forwards;
}

.sal-slide-left.sal-animate {
  transform: translateX(0);
  animation: slide-left 0.9s ease forwards;
}

.sal-slide-right.sal-animate {
  transform: translateX(0);
  animation: slide-right 0.9s ease forwards;
}

/* Keyframes */
@keyframes slide-up {
  from {
    transform: translateY(30px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes slide-down {
  from {
    transform: translateY(-30px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes slide-left {
  from {
    transform: translateX(30px);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes slide-right {
  from {
    transform: translateX(-30px);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

.bg-org{
 background: #fff0eb !important;
}
.bg-blu{
    background: #bbe5ff40 !important;
}
.bg-yel{
 background: #ffefbc9c !important;
}
.bg-pin{
  background: #fdd3d970 !important;
}
.bg-gre
{
  background: #cdf07e63 !important;
}
.why-us.block-feature-twentyFive .features .icon{
  width: 48px;
    height: 48px;
}
.why-us.block-feature-twentyFive .features .text{
  font-size: 20px;
}
.text-he{
  color: var(--org);
  font-weight: 600;
}
.features-slide .card-style-four h4{
  font-size: 23px;
    line-height: 28px;
    margin:20px 0px 20px;
}
.card-style-four p{
  font-size: 18px;
  line-height: 32px;
}
.hero-banner-six .wrapper .box-one{
  background: var(--org);
}
.hero-banner-six .wrapper .box-two{
  background: var(--blue);
}
.hero-banner-six .wrapper .row-wrapper .col-wrapper.col-40{
  width: 40%;
}
.hero-banner-six .wrapper .box-three{
  background: transparent;
  padding: 0px;
}
.hero-banner-six .wrapper .box-four{
  background: transparent;
  padding: 0px;
}
.banner{
  background-image: url('../images/bg_04.webp');
  background-position: center bottom;
  background-repeat: no-repeat;
  background-size: cover;
}
.hero-banner-six.banner .hero-heading span{
  background: transparent;
}
.hero-banner-six .shape_01 {
    /* bottom: 0; */
    left: 8%;
    max-width: 15%;
    animation: jumpTwo 5s infinite linear;
        top: 40px;
        position: absolute;
  z-index: 1;
}
.hero-banner-six .shape_02 {
  position: absolute;
  z-index: -1;
    bottom: 42%;
    right: 12%;
    max-width: 12%;
    animation: jumpThree 5s infinite linear;
}

.avatar-section {
      position: relative;
      padding: 80px 0 100px;
      text-align: center;
      /* background-color: #0d0d20; */
      z-index: 2;
    }

    .avatar-grid {
      margin-top: 40px;
      display: flex;
      justify-content: center;
      gap: 30px;
      flex-wrap: wrap;
    }

    .avatar-grid img {
      width: 200px;
      height: 280px;
      object-fit: cover;
      border-radius: 20px;
      box-shadow: 0 10px 20px rgba(0,0,0,0.2);
      transition: transform 0.3s ease;
    }

    .avatar-grid img:hover {
      transform: scale(1.05);
    }

    .overlap-section {
      margin-top: -185px;
      background:var(--blue) ;
      padding: 120px 70px 60px;
      z-index: 1;
      position: relative;
      border-radius: 40px;
    }

   

    .avatar-types h4 {
      color: #fff;
      font-weight: 600;
    }

    .avatar-types ul {
      list-style-type: none;
      padding: 0;
      font-size: 1.1rem;
    }

    .avatar-types ul li::before {
      content: "• ";
      color: #fff;
    }

    .cta-btn {
      margin-top: 20px;
    }
    .work-tabs.block-feature-five .filter-nav .nav-link.active{
      background: var(--org);
    }
    .work-tabs.block-feature-five .feature-tab{
      background: #f3d5cba3 !important
    }
    .usecase .card-style-one h4{
      font-size: 22px;
      letter-spacing: 0px;
    line-height: 28px;
    margin: 20px 0 20px;
    }
    .usecase .card-style-one{
      margin-bottom: 20px;
    }

    /* Integration Slider Styles */
        .integration-inner {
            position: relative;
            overflow: hidden;
            padding: 40px 0;
            height: 500px;
            mask: linear-gradient(180deg, transparent 0%, white 15%, white 85%, transparent 100%);
        }

        .slider-track {
            display: flex;
            flex-direction: column;
            gap: 30px;
            animation: verticalMarquee 20s linear infinite;
            height: max-content;
            align-items: center;
        }
        .slider-track-2 {
            display: flex;
            flex-direction: column;
            gap: 30px;
            animation: verticalMarquee2 20s linear infinite;
            height: max-content;
            align-items: center;
        }

        .integration-item {
            background: rgba(255, 255, 255, 0.9);
            backdrop-filter: blur(20px);
            border: 1px solid rgba(255, 255, 255, 0.2);
            border-radius: 20px;
            padding: 25px 35px;
            display: flex;
            align-items: center;
            gap: 15px;
            min-width: 280px;
            width: 100%;
            transition: all 0.3s ease;
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
            position: relative;
            overflow: hidden;
            flex-shrink: 0;
        }

        .integration-item::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
            transition: left 0.6s;
        }

        .integration-item:hover::before {
            left: 100%;
        }

        .integration-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
            border-color: rgba(81, 77, 224, 0.3);
        }

        .xb-icon {
            width: 50px;
            height: 50px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            border-radius: 12px;
            flex-shrink: 0;
            position: relative;
            overflow: hidden;
        }
        .xb-icon svg{
          color: #fff;
        }

        .xb-icon::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(45deg, transparent 30%, rgba(255,255,255,0.3) 50%, transparent 70%);
            transform: translateX(-100%);
            transition: transform 0.6s;
        }

        .integration-item:hover .xb-icon::before {
            transform: translateX(100%);
        }

        .xb-icon img {
            width: 24px;
            height: 24px;
            filter: brightness(0) invert(1);
        }

        .xb-title {
            font-size: 16px;
            font-weight: 600;
            color: #2c3e50;
            text-shadow: 0 1px 2px rgba(255, 255, 255, 0.8);
        }
         @keyframes verticalMarquee {
            0% {
                transform: translateY(-0%);
            }
            100% {
                transform: translateY(-50%);
            }
        }
         @keyframes verticalMarquee2 {
            0% {
                transform: translateY(-50%);
            }
            100% {
                transform: translateY(-0%);
            }
        }
         .integration-item {
                min-width: 200px;
                width: 200px;
                padding: 20px 25px;
            }
            /* Additional Integration Items for variety */
        .integration-item:nth-child(1) .xb-icon { background: linear-gradient(135deg, #ff6b6b 0%, #ee5a24 100%); }
        .integration-item:nth-child(2) .xb-icon { background: linear-gradient(135deg, #4834d4 0%, #686de0 100%); }
        .integration-item:nth-child(3) .xb-icon { background: linear-gradient(135deg, #00d2d3 0%, #54a0ff 100%); }
        .integration-item:nth-child(4) .xb-icon { background: linear-gradient(135deg, #ff9ff3 0%, #f368e0 100%); }
        .integration-item:nth-child(5) .xb-icon { background: linear-gradient(135deg, #feca57 0%, #ff9f43 100%); }
        .integration-item:nth-child(6) .xb-icon { background: linear-gradient(135deg, #48dbfb 0%, #0abde3 100%); }




        .showcase-items {
    position: relative;
    overflow: hidden;
    width: 270px;
    height: 300px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}
.showcase-video {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 10px;
    display: block;
}
.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex
;
    justify-content: space-between;
    flex-direction: column;
    padding: 15px;
    border-radius: 10px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0));
}
.video-icon {
    align-self: flex-end;
}
.video-play-btn {
    background-color: var(--blue);
    border: none;
    border-radius: 50%;
    padding: 2px;
    cursor: pointer;
    transition: background 0.3s;
    position: absolute;
    top: 10px;
    left: 10px;
    z-index: 10;
    width: 40px;
    height: 40px;
    line-height: 36px;
}

    .video-icon svg {
    width: 20px;
    fill: #fff;
}
.help-block.with-errors {
  color: red;
  font-size: 0.9em;
  margin-top: 5px;
}
.custom-dropdown .dropdown-wrapper {
  position: relative;
  user-select: none;
}

.custom-dropdown .dropdown-wrapper {
  position: relative;
  user-select: none;
}

.dropdown-trigger {
  background: #fff;
  border: 1px solid #ccc;
  padding: 10px 14px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-radius: 8px;
  font-size: 16px;
  color: rgb(0 0 0);
  margin-bottom: 8px;
}

.dropdown-trigger .arrow {
  transition: transform 0.3s ease;
}

/* rotate arrow when open */
.dropdown-wrapper.open .arrow {
  transform: rotate(180deg);
}

/* dropdown content is hidden initially */
.dropdown-options {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: white;
  border: 1px solid #ccc;
  border-top: none;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  z-index: 10;
  visibility: hidden;
  opacity: 0;
}

/* when open, dropdown becomes visible */
.dropdown-wrapper.open .dropdown-options {
  max-height: 300px;
  visibility: visible;
  opacity: 1;
  overflow-y: auto;
}

.dropdown-options label {
  display: block;
  padding: 10px 14px;
  border-bottom: 1px solid #eee;
  cursor: pointer;
  color: rgb(0 0 0) !important;
}

.dropdown-options label:hover {
  background-color: #f4f4f4;
}
.dropdown-options input {
    width: auto !important;
    height: auto !important;
}
.inner-bg{
  background-image: url('../images/assets/bg_03.png');
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.services-style .card-style-six {
    padding: 35px 30px 30px;
    height: 100%;
}
.services-style .card-style-six p {
    font-size: 18px;
    line-height: 28px;
}
.services-style .card-style-six h4 {
    font-size: 22px;
    font-weight: 600;
    letter-spacing: 0px; 
    margin: 19px 0 19px;
}
.avatar-plat .project-block-one .title{
    font-size: 33px;
    font-weight: 700;
    line-height: 42px;
    margin: 15px 0 30px;
}
.avatar-plat .project-block-one p {
    font-size: 18px;
    line-height: 28px;
}
.logo-w{
  width: 190px;
}
.title-two h2 {
    font-size: 38px;
    line-height: 50px;
    font-weight: 700;
}
.sector .sd-ser-list li{
  display: flex;
    align-items: baseline;
}
.sector .sd-ser-list li svg{
  margin-right: 13px;
  fill: var(--blue);
}
.partner-logo-one .item img {
    filter: grayscale(100%);
    transition: filter 0.3s ease;
}
.partner-logo-one .item img:hover {
    filter: none;
}
.contact-section-one .form-style-one .input-group-meta input{
  border:1px solid #80808052;
  border-radius: 8px;
  height: 50px;
  margin-bottom: 8px;
  padding: 10px 14px;
}
.contact-section-one .form-style-one .input-group-meta label{
  margin-bottom: 10px;
}
.contact-section-one .form-style-one .input-group-meta textarea{
   border:1px solid #80808052;
  border-radius: 8px;
  height: 100px;
  padding: 10px 14px;
}
.quote-div{
  margin-top: -130px;
  border: 1px solid #8080805e;
  box-shadow: 0 4px 24px -1px rgba(28, 9, 61, 0.2);
}
.title-two.title-cont{
  font-size: 28px;
}
.footer-one{
  background: linear-gradient(234.5deg, #06649840 22.65%, #d25e3521 76.31%, #d25e3517 90.61%);
  /* margin-top: 70px; */
}
.btn-one-2{
  border: 1px solid #fff;
  color: #fff;
}


.carousel-wrapper {
  position: relative;
  padding: 0 30px;
}

.swiper-slide {
  text-align: center;
}

.swiper-button-prev,
.swiper-button-next {
  background-color: var(--org);
  border-radius: 50px;
  color: #000; /* Change based on your theme */
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  font-size: 16px !important;
  padding: 23px;
}
.hero-banner-six .swiper-button-next:after, .hero-banner-six .swiper-button-prev:after {
   font-size: 16px !important;
}

.swiper-button-prev {
  left: 0;
}

.swiper-button-next {
  right: 0;
}
.hero-banner-six .inner-content{
  height: 100%;
}


.mp-4{
  background: #fff;
}
#myFrame{
  width: 100%;
    height: 79dvh;
    border: 0;
    border-radius: 30px;
    box-shadow: 0 3px 18px rgba(2, 21, 78, 0.09);
}
 .iframe-container {
            position: relative;
            background: rgba(255,255,255,0.1);
            backdrop-filter: blur(20px);
            border-radius: 20px;
            padding: 20px;
            border: 1px solid rgba(255,255,255,0.2);
            box-shadow: 0 20px 40px rgba(0,0,0,0.3);
        }

    .iframe-container::before {
            content: '';
            position: absolute;
            top: -2px;
            left: -2px;
            right: -2px;
            bottom: -2px;
            /* background: linear-gradient(45deg, #ff6b6b, #4ecdc4, #45b7d1, #96ceb4); */
            background: var(--gradient);
            border-radius: 22px;
            z-index: -1;
            animation: borderGlow 3s ease-in-out infinite alternate;
        }

     #myFrame {
            width: 100%;
            height: 500px;
            border: none;
            border-radius: 15px;
            background: #fff;
        }
/* iframe .container{
  background: transparent;
} */
  .hero-banner-six.hero-2-banner .hero-heading {
    font-size: 65px;
  }
  .hero-banner-six.hero-2-banner .hero-heading span {
      padding: 0px;
  }
  .gif
{
  position: absolute;
    right: 36%;
    top: 65%;
}




 @keyframes borderGlow {
            0% { opacity: 0.5; }
            100% { opacity: 1; }
        }

        .dropdown-wrapper.active .dropdown-arrow {
  transform: rotate(180deg);
}
input:-internal-autofill-selected{
  background-color: transparent !important;
}
 .thank-main{
    background-color: #fff;
    padding:40px;
    border-radius: 18px;
    box-shadow: 0 4px 24px -1px rgba(28, 9, 61, 0.2);
  }
  .thank-main img{
    width: 40%;
    margin-bottom: 10px;
  }
  .thank-link li a {
    background-color: var(--org);
    padding: 8px;
    border-radius: 30px;
    color: #fff;
    display: inline-block;
    width: 40px;
    height: 40px;
    line-height: 24px;
    text-align: center;
    margin-top: 10px;
}
.thank-link {
    display: flex;
    list-style-type: none;
    justify-content: center;
    gap: 10px;
    padding-left: 0px;
}
.thank-hed{
  font-family: "Pacifico", cursive;
  font-weight: 500 !important;
  font-size: 45px;
  letter-spacing: 1px;
  color: var(--blue);
}
.custom-btn {
  width: auto;
  height: auto;
  color: #fff;
  border-radius: 30px;
  font-size: 18px;
  padding: 10px 25px;
  font-weight: 500;
  background: transparent;
  cursor: pointer;
  transition: color 0.3s ease;
  position: relative;
  display: inline-block;
   box-shadow:inset 2px 2px 2px 0px rgba(255,255,255,.5),
   7px 7px 20px 0px rgba(0,0,0,.1),
   4px 4px 5px 0px rgba(0,0,0,.1);
  outline: none;
}
.btn-15 {
  background: var(--gradient);
  border: none;
  z-index: 1;
  overflow:hidden;    
}
.btn-15:after {
  position: absolute;
  content: "";
  width: 0;
  height: 100%;
  /* inset: 0;  */
  top: 0;
  right: 0;
  z-index: -1;
  background-color: var(--org);
  border-radius: 30px;
   box-shadow:inset 2px 2px 2px 0px rgba(255,255,255,.5),
   7px 7px 20px 0px rgba(0,0,0,.1),
   4px 4px 5px 0px rgba(0,0,0,.1);
    
  transition: all 0.3s ease;
}
.btn-15:hover {
  color: #fff;
}
.btn-15:hover:after {
  left: 0;
  width: 100%;
   /* transform: scaleX(1);  */
}
.btn-15:active {
  top: 2px;
}

.cont-card{
  background: #2980b114;
    border-radius: 30px;
    padding: 25px;
    /* border: 1px solid #8080805e;
    box-shadow: 0 4px 24px -1px rgba(28, 9, 61, 0.2); */
}
.map-rounded iframe{
  border-radius: 20px;
}
.hero-banner-three li{
    margin: 10px 30px 0 0;
    font-size: 18px;
    font-weight: 500;
}
.hero-banner-three li svg{
  color: var(--green);
  margin-right: 5px;
}

.work .dots-navigation {
            display: flex;
            justify-content: center;
            gap: 120px;
            padding: 30px 0;
        }

 .work .dot {
            width: 70px;
            height: 70px;
            border-radius: 50%;
            background: #e2e8f0;
            color: #64748b;
            border: none;
            cursor: pointer;
            font-weight: 600;
            font-size: 1.1rem;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
                z-index: 1; 
        }

        .work .dot:hover {
            background: #cbd5e0;
            transform: scale(1.1);
        }

        .work .dot.active {
            background: var(--blue);
            color: white;
            transform: scale(1);
            box-shadow: 0 5px 20px #0664984a;
        }

       .work .dot:not(:last-child)::after {
            content: '';
            position: absolute;
            left: 100%;
            top: 50%;
            width: 185px;
            height: 2px;
            background: #e2e8f0;
              border-bottom: 2px dashed var(--blue);
            transform: translateY(-50%);
        }

        /* .work .dot.active:not(:last-child)::after {
            background: var(--blue);
        } */

        .steps-container {
            display: flex;
            /* padding: 60px 0; */
            gap: 40px;
            /* overflow-x: auto;
            scrollbar-width: thin;
            scrollbar-color: #cbd5e0 #f1f5f9; */
        }

        .steps-wrapper {
            display: flex;
            gap: 40px;
            min-width: 100%;
        }

        .steps-container::-webkit-scrollbar {
            height: 8px;
        }

        .steps-container::-webkit-scrollbar-track {
            background: #f1f5f9;
            border-radius: 4px;
        }

        .steps-container::-webkit-scrollbar-thumb {
            background: #cbd5e0;
            border-radius: 4px;
        }

        .steps-container::-webkit-scrollbar-thumb:hover {
            background: #94a3b8;
        }

        .step-card {
            min-width: 300px;
            flex: 1;
            text-align: center;
            padding: 30px 20px;
            background: #f8fafc;
            border-radius: 15px;
            border: 2px solid #e2e8f0;
            transition: all 0.3s ease;
            position: relative;
            opacity: 0.6;
            transform: scale(0.95);
        }

        .step-card.active {
            opacity: 1;
            /* transform: scale(1); */
            /* border-color: #066498ad; */
            background: white;
            box-shadow: 0 10px 30px rgba(102, 126, 234, 0.1);
        }

        .step-icon {
            width: 80px;
            height: 80px;
            margin: 0 auto 25px;
            background: #e2e8f0;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            transition: all 0.3s ease;
            position: relative;
        }

        .step-card.active .step-icon {
            background: var(--gradient);
            color: white;
            transform: scale(1.1);
        }

        .step-number {
            position: absolute;
            top: -10px;
            right: -10px;
            width: 65px;
            height: 65px;
            background: var(--org);
            color: white;
            border-radius: 50%;
            font-size:18px;
            font-weight: bold;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .step-card.active .step-number {
            background: var(--org);
        }

        .step-title {
            font-size: 30px;
            /* color: #2d3748; */
            margin-bottom: 15px;
            font-weight: 600;
            line-height: 1.4;
        }

        .step-description {
            font-size: 18px;
            color: #4a5568;
            line-height: 1.6;
        }

        .step-card.active .step-description {
            color: #2d3748;
        }

        @media (max-width: 1200px) {
            .steps-wrapper {
                gap: 30px;
            }
            
            .step-card {
                min-width: 280px;
            }
        }

        @media (max-width: 768px) {
            .header h1 {
                font-size: 2rem;
            }
            
            .header p {
                font-size: 1rem;
            }
            
            .dots-navigation {
                gap: 10px;
                padding: 20px 0;
            }
            
            .dot {
                width: 40px;
                height: 40px;
                font-size: 0.9rem;
            }
            
            .dot:not(:last-child)::after {
                width: 10px;
            }
            
            /* .steps-container {
                padding: 30px 0;
            } */
            
            .steps-wrapper {
                gap: 20px;
            }
            
            .step-card {
                min-width: 250px;
                padding: 25px 15px;
            }
            
            .step-icon {
                width: 70px;
                height: 70px;
                font-size: 1.8rem;
            }
            
            .step-title {
                font-size: 1.1rem;
            }
            
            .step-description {
                font-size: 0.9rem;
            }
        }

        @media (max-width: 480px) {
            .step-card {
                min-width: 220px;
            }
            
            .dots-navigation {
                flex-wrap: wrap;
                gap: 8px;
            }
            
            .dot {
                width: 35px;
                height: 35px;
                font-size: 0.8rem;
            }
            
            .steps-wrapper {
                gap: 15px;
            }
        }


        /*** features ***/
         .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
            gap: 24px;
            margin-bottom: 70px;
        }

        .feature-card {
            background: #06649824;
            backdrop-filter: blur(20px);
            border: 1px solid rgba(255, 255, 255, 0.2);
            border-radius: 20px;
            padding: 32px 20px;
            text-align: center;
            transition: all 0.3s ease;
            cursor: pointer;
        }

        .feature-card:hover {
            transform: translateY(-10px);
            background: none;
            color: #000;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
            border: 2px solid var(--blue);
        }
        .feature-card:hover .feature-title{
          color: #000;
        }
        .feature-card:hover .feature-icon {
            background: rgb(220 233 240);
            transform: scale(1.1);
        }
        .feature-icon {
            width: 48px;
            height: 48px;
            background: #fff;
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            font-size: 24px;
        }

        .feature-title {
            font-size: 18px;
            font-weight: 600;
            color: #000;
            line-height: 1.3;
        }


 @media (max-width: 768px) {
          .features-grid {
                grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
                gap: 16px;
            }

            .feature-card {
                padding: 24px 16px;
            }
          }


        .timeline.time-2 {
  position: relative;
  max-width: 700px;
  width: 100%;
  padding-left: 30px;
  /* border-left: 2px solid var(--blue); */
}
/* .time-2 .content
{
background: white;
    border-radius: 20px;
    padding: 20px;
    width: 390px;
} */

.time-2 .timeline-step {
  position: relative;
  margin-bottom: 30px;
}

.time-2 .dot {
  position: absolute;
  left: -40px;
  top: 4px;
  width: 16px;
  height: 16px;
  background: var(--org);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--org);
}

.time-2 .content h3 {
  margin: 0 0 6px;
  font-size: 1.2rem;
  color: var(--org);
}

/* .time-2 .content{
background: #88b5cd26;
    padding: 20px;
    border-radius: 20px;
} */

.time-2 .content p {
  margin: 0;
  font-size: 18px;
 
}
.video-bg{
  background-color: #f4f4f4;
  border-radius: 30px;
  padding: 30px;
  box-shadow: rgba(6, 100, 152, 0.29) 0px 5px 20px;
}
.video-bg video {
  width: 100%;
  height: auto;
  border-radius: 20px;
}
.time-2 .timeline-step:last-child::after {
  display: none;
}

/* Optional fallback: remove bottom border if needed */
.time-2 {
  border-left: none;
}

/* Draw connector only between steps (skip the last one) */
.time-2 .timeline-step:not(:last-child)::before {
  content: "";
  position: absolute;
  left: -33px;          /* align with center of dot */
  top: 20px;            /* start just below the dot */
  bottom: -38px;        /* extend up to just above the next dot */
  width: 2px;
  background-color: var(--blue);
  z-index: 0;
}

/* Remove any global left border we may have added earlier */
.time-2 {
  border-left: none;
}



.btn-4{
  background: var(--gradient);
  color: #fff;
}
.btn-4:hover{
  background: var(--org);
  color: #fff;
  border: none;
}
.btn-5{
  background: var(--org);
  color: #fff;
  padding:10px 13px;
  font-size: 18px;
}
.btn-5:hover{
  background: #000;
  color: #fff;
  border: none;
}
.feedback-section-seven .bg-wrapper {
    background: #86b3cd87;
    border-radius: 50px;
    padding: 65px 0 80px;
}
.feedback-section-seven .speech-wrapper blockquote {
    color: #000;
}
.feedback-section-seven .speech-wrapper blockquote {
    font-size: 36px;
    line-height: 48px;
    letter-spacing: 0px;
    margin: 0 0 20px;
  
}
/* .steps-sec{
  background-image: url('https://document360.com/wp-content/themes/document360/images/new/shape-gradient.svg');
} */


.step-card {
    display: none;
    transition: opacity 0.5s ease;
}

.step-card.active {
    display: block;
}
.features-bgs {
    position: relative;
    padding: 60px 60px;
    border-radius: 50px 50px 100px 50px;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.1);
    background-image: url(/static/assets/images/home/bg_avatar_01.webp);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    overflow: hidden;
    z-index: 1;
}

.features-bgs::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* background: rgba(0, 0, 0, 0.4);  */
    z-index: 0;
    border-radius: inherit;
}

.features-bgs > * {
    position: relative;
    z-index: 1;
}


.features-bgs{
  padding: 60px 60px;
  border-radius: 50px 50px 100px 50px;
  box-shadow: 0 10px 30px rgba(102, 126, 234, 0.1);
  /* background: rgba(224, 239, 247, .47);*/
  background-image: url('/static/assets/images/home/bg_avatar.webp'); 
  /* background-image: url('http://cdn.prod.website-files.com/61ddd0b42c51f86c96e1e90e/6839cc5925137e356498c32e_cta-bg.webp'); */
   /* background: #d98566;
background: linear-gradient(147deg, rgba(217, 133, 102, 1) 0%, rgba(69, 145, 186, 1) 35%, rgba(186, 217, 126, 1) 100%);; */
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
.features-bgs .featu-card{
  padding: 20px;
  border-radius: 20px;
  margin-bottom: 20px;
  height: 100%;
  background: #fff;
  display: flex;
    align-items: center;
    gap: 12px;
   transition: all 0.3s ease;
}
.featu-card:hover {
   transform: scale(1.1);
}
.featu-card:hover .featu-icon svg {
    color: var(--org); 
}

.featu-card:hover .featu-title {
    color: var(--org);
}
.features-bgs .featu-title{
  font-size: 18px;
  font-weight: 600;
  color: #000;
}
.featu-icon svg{
  width: 24px;
  height: 24px;
  color: #000;
}
.featu-icon{
  background: #fdd3d970 !important;
  width: 40px;
    height: 40px;
    border-radius: 9px;
    padding: 8px;
    line-height: 19px;
    
}



.progress-comparison-container {
    max-width: 1000px;
    margin: 0 auto;
}

.progress-row {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    color: #333;
}

.progress-row:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.progress-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid #f0f0f0;
}

.progress-header h4 {
    color: var(--blue);
    margin: 0;
    font-weight: 600;
}
.progress-header h4 i{
  color: var(--org);
}

.completion-badge {
    background: linear-gradient(135deg, #28a745, #20c997);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.9rem;
}

.completion-badge.incomplete {
    background: linear-gradient(135deg, #dc3545, #fd7e14);
}

.progress-timeline {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    position: relative;
    padding: 1rem 0;
}

.progress-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    flex: 1;
    position: relative;
    opacity: 0;
    transform: translateY(20px);
    animation: stepFadeIn 0.6s ease forwards;
}

.progress-step:nth-child(1) { animation-delay: 0.2s; }
.progress-step:nth-child(2) { animation-delay: 0.4s; }
.progress-step:nth-child(3) { animation-delay: 0.6s; }
.progress-step:nth-child(4) { animation-delay: 0.8s; }
.progress-step:nth-child(5) { animation-delay: 1.0s; }

@keyframes stepFadeIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.step-indicator {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
}

.progress-step.completed .step-indicator {
    background: linear-gradient(135deg, #28a745, #20c997);
    color: white;
    box-shadow: 0 8px 25px rgba(40, 167, 69, 0.3);
    animation: checkPulse 0.6s ease;
}

.progress-step.incomplete .step-indicator {
    background: linear-gradient(135deg, #dc3545, #fd7e14);
    color: white;
    box-shadow: 0 8px 25px rgba(220, 53, 69, 0.3);
}

@keyframes checkPulse {
    0% { transform: scale(0.8); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

.step-content h6 {
    color: #2c3e50;
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-size: 18px;
}

.step-content p {
    color: #666;
    font-size: 0.85rem;
    margin: 0;
    line-height: 1.4;
}

.connecting-line {
    position: absolute;
    top: 30px;
    left: 50%;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #28a745, #20c997);
    z-index: 1;
    border-radius: 2px;
    animation: lineGrow 0.8s ease forwards;
    transform-origin: left;
    transform: scaleX(0);
}

.connecting-line.incomplete-line {
    background: linear-gradient(90deg, #dc3545, #fd7e14);
}

.progress-step.final .connecting-line {
    display: none;
}

@keyframes lineGrow {
    to {
        transform: scaleX(1);
    }
}

.progress-step:nth-child(1) .connecting-line { animation-delay: 0.4s; }
.progress-step:nth-child(2) .connecting-line { animation-delay: 0.6s; }
.progress-step:nth-child(3) .connecting-line { animation-delay: 0.8s; }
.progress-step:nth-child(4) .connecting-line { animation-delay: 1.0s; }

.replay-animation {
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: white;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.replay-animation:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

/* Hover effects for progress steps */
.progress-step:hover .step-indicator {
    transform: scale(1.1);
}

/* .progress-step:hover .step-content h6 {
    color: #667eea;
} */

/* Responsive design for progress section */
@media (max-width: 768px) {
    .progress-timeline {
        flex-direction: column;
        align-items: center;
    }
    
    .progress-step {
        margin-bottom: 2rem;
        width: 100%;
        max-width: 300px;
    }
    
    .connecting-line {
        top: 100%;
        left: 50%;
        width: 4px;
        height: 50px;
        transform: translateX(-50%) scaleY(0);
        transform-origin: top;
    }
    
    @keyframes lineGrow {
        to {
            transform: translateX(-50%) scaleY(1);
        }
    }
    
    .progress-header {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
}

.video-wrapper {
    position: relative;
}
.video-wrapper video {
    width: 100%;
    height: 288px;
    border-radius: 20px;
    object-fit: cover;
    object-position: top;
    border-radius: 20px;
}
.video-btn {
    position: absolute;
    top: 80%;
    left: 11%;
    transform: translate(-50%, -50%);
    z-index: 2;
    background: rgb(84 153 191);
    color: #fff;
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    font-size: 18px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
}

.video-btn:hover {
    background: rgba(0, 0, 0, 0.8);
}

.table-gra{
  background: linear-gradient(rgb(245, 247, 249) 0%, rgb(193 217 230) 100%);
}
     .main-headline {
      text-align: center;
      font-weight: 700;
      /* margin-top: 2.5rem; */
      margin-bottom: 0.5rem;
      font-size: 2rem;
    }
    .main-subtext {
      text-align: center;
      color: #7d7e84;
      font-size: 1rem;
      margin-bottom: 2.5rem;
      max-width: 530px;
      margin-left: auto;
      margin-right: auto;
    }
    .compare-card {
      background: #fff;
      border-radius: 1.3rem;
      box-shadow: 0 2px 20px rgb(44 63 88 / 15%);
      /* box-shadow: 0 2px 20px rgba(44,63,88,0.06); */
      padding: 30px 18px;
      /* margin: auto;
      max-width: 800px; */
    }
    .compare-table {
      width: 100%;
      background: transparent;
    }
    .compare-table th, .compare-table td {
      padding: 1rem 0.7rem;
      vertical-align: middle;
      font-size: 18px;
      font-weight: 500;
    }
    .compare-table th {
      background: transparent;
      border: 0;
      font-weight: 700;
      color: var(--blue);
      text-align: left;
      font-size: 22px;
      background: #e1eff7a1;
    }
    .compare-table tr:hover{
      background: #e1eff7a1;
    }
    .compare-table .col-features {
      /* width: 48%; */
      color: #24272f;
      font-weight: 500;
    }
    .compare-table .icons {
      font-size: 26px;
      margin-right: 8px;
      color: green;
      /* vertical-align: middle; */
    }
    .compare-table .icons.icon-2{
      color: red;
    }
    .cell-active {
      background: #faf9ff;
      border-radius: 9px;
    }
    /* Responsive design */
    @media (max-width: 600px) {
      .main-headline {
        font-size: 1.15rem;
      }
      .compare-card {
        padding: 13px 4px;
      }
      .compare-table td, .compare-table th {
        font-size: 0.93rem;
        padding: 0.62rem 0.3rem;
      }
      .compare-table .icons {
        font-size: 1.15rem;
      }
    }

     /* --- Gradient Ball Styling --- */
        .gradient-ball-1 {
            position: absolute;
            width: 100px; /* Size of the ball */
            height: 100px; /* Size of the ball */
            border-radius: 50%; /* Makes it circular */
            background: linear-gradient(45deg, #6366f1, #a78bfa); /* Your linear gradient colors */
            /* You can adjust these colors to match your desired aesthetic */

            /* Positioning the ball */
            top: 10%; /* Adjust as needed */
            left: 85%; /* Adjust as needed */
            transform: translate(-50%, -50%); /* Centers the ball precisely on its top/left origin */

            /* Optional: blur or shadow for a softer look */
            filter: blur(15px); /* Creates a soft glow effect */
            /* box-shadow: 0 0 20px rgba(99, 102, 241, 0.5); /* Alternative for a sharper shadow */

            z-index: 0; /* Ensures it stays behind content if content is Z-indexed */
        }

        /* Responsive adjustments for the ball */
        @media (max-width: 768px) {
            .gradient-ball-1 {
                width: 70px;
                height: 70px;
                top: 5%;
                left: 90%;
                filter: blur(10px);
            }
        }

        @media (max-width: 576px) {
            .gradient-ball-1 {
                width: 50px;
                height: 50px;
                top: 2%;
                left: 95%;
                filter: blur(8px);
            }
        }

        /* Example of another ball, if you want multiple */
        .gradient-ball-2 {
            position: absolute;
            width: 70px;
            height: 70px;
            border-radius: 50%;
            background:linear-gradient(45deg, #feecee, #a78bfa); /* Different gradient for variety */
            bottom: 5%;
            left: 10%;
            transform: translate(-50%, -50%);
            filter: blur(10px);
            z-index: 0;
        }

        @media (max-width: 768px) {
            .gradient-ball-2 {
                width: 50px;
                height: 50px;
                bottom: 2%;
                left: 5%;
            }
        }

        .gradient-ball-rotate-container {
  position: absolute;
  top: 10%;
  left: 85%;
  width: 150px;   /* Diameter of the rotation path */
  height: 150px;
  margin-left: -75px;
  margin-top: -75px;
  animation: rotate-around 20s linear infinite;
  pointer-events: none;
  z-index: 0;
}
/* The animated gradient ball */
.gradient-ball {
  position: absolute;
  top: 50%;
  left: 100%;    /* Places the ball on the orbit edge */
  width: 100px;  /* Ball size */
  height: 100px;
  border-radius: 50%;
  background: linear-gradient(45deg, #feecee, #a78bfa);
  filter: blur(15px);
  transform: translate(-50%, -50%);
  pointer-events: none;
}

/* Keyframes for continuous, smooth rotation */
@keyframes rotate-around {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .gradient-ball-rotate-container {
    width: 120px;
    height: 120px;
    margin-left: -60px;
    margin-top: -60px;
  }
  .gradient-ball {
    width: 70px;
    height: 70px;
  }
}
@media (max-width: 576px) {
  .gradient-ball-rotate-container {
    width: 90px;
    height: 90px;
    margin-left: -45px;
    margin-top: -45px;
  }
  .gradient-ball {
    width: 50px;
    height: 50px;
  }
}


/** resources **/
.feature-block.resource-block {
            position: relative;
            /* min-height: 400px; */
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
            overflow: hidden;
        }
        .resource-block.res-1 {
    background-image: url('/static/assets/images/resources/help-center.webp');
}

.resource-block.res-2 {
    background-image: url('/static/assets/images/resources/usecases.webp');
}
.resource-block.res-3 {
    background-image: url('/static/assets/images/resources/hub.webp');
}
        
        .resource-block.feature-block::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0, 0, 0, 0.6);
            z-index: 1;
        }
        
        .resource-block .feature-content {
            position: relative;
            z-index: 2;
            color: white;
            height: 100%;
            display: flex;
            flex-direction: column;
            justify-content: flex-end;
            /* padding: 2rem; */
        }
        
        .resource-block .feature-content h3 {
            color: white;
            margin-bottom: 1rem;
        }
        
        .resource-block .feature-content p {
            color: rgba(255, 255, 255, 0.9);
            margin-bottom: 1.5rem;
        }
        
        
        
        /* @media (max-width: 768px) {
            .resource-block {
                min-height: 300px;
            }
            
            .resource-block .feature-content {
                padding: 1.5rem;
            }
        } */



        .hero-banner-three.home-banner .hero-heading {
    font-size: 48px;
    line-height: 60px;
    font-weight: 800;
}
/* .block-feature-eleven .feature-block{
  transition: all 0.3s ease-in-out;
}
.block-feature-eleven .feature-block:hover::before {
    animation: shine 1.5s ease-out infinite;
}
.block-feature-eleven .feature-block:hover {
    transform: scale(1.05);
}
.block-feature-eleven .feature-block::before{
  content: "";
    position: absolute;
    width: 100px;
    height: 100%;
    background-image: linear-gradient(120deg, rgba(255, 255, 255, 0) 30%, rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0) 70%);
    top: 0;
    left: -100px;
    opacity: 0.6;
}

@keyframes shine {
    0% {
    left: -100px;
}

60% {
    left: 100%;
}
100% {
    left: 100%;
}
} */

.home-li li{
  display: flex;
  align-items: baseline;
}
/* .home-li li svg{
  margin-right: 6px;
} */
.compare-card table td .tb-div
{
display: flex;
    width: 100%;
    align-items: baseline;
}
 .card-style-eight .icon.cont-icon {
    width: 45px;
    height: 45px;
    background: var(--gradient);
}
.map-iframe{
  border-radius: 30px;
}
.grad-txt
{
  background: linear-gradient(90deg, #d25e35, #066498 16.7%, #7fad19 33.3%, #066498 50%, #d25e35 66.7%, #066498 83.3%, #7fad19);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    filter: saturate(1.2);
    background-size: 400% 400%;
}
.grad-txt
{
  animation: SectionHeader_gradient__JNF9n 20s linear infinite, SectionHeader_fadeIn__wwtXH 1s ease-out;
}
@keyframes SectionHeader_gradient__JNF9n{
0% {
    background-position: 0 50%;
}

100% {
    background-position: -400% 50%;
}
}

.block-feature-five .filter-nav .nav-link {
    padding: 11px 30px 11px 30px;
}
@media (max-width: 991.98px) {
  .filter-nav {
    display: none;
  }
}

@media (min-width: 992px) {
  #tabDropdown {
    display: none;
  }
}

.nav-tabs .nav-link {
  background-color: transparent;
  color: #000;
  border: none;
  transition: all 0.3s ease;
}


.feature-tab {
  transition: background-color 0.3s ease;
}

.nav-tabs .nav-link[aria-selected="true"][data-bs-target="#construct"] {
  background-color: #41789f; 
  color: #fff;
}

.tab-pane#construct.active ~ .feature-tab {
  background-color: #cdf07e63 !important ;
}


.nav-tabs .nav-link[aria-selected="true"][data-bs-target="#quality"] {
  background-color: #fcd559; 
  color: #fff;
}

.tab-pane#quality.active ~ .feature-tab {
  background-color: #e3f2fd;
}


.nav-tabs .nav-link[aria-selected="true"][data-bs-target="#alternative"] {
  background-color: #d25e35; 
  color: #fff;
}

.tab-pane#alternative.active ~ .feature-tab {
  background-color: #f3e5f5;
}

.nav-tabs .nav-link[aria-selected="true"][data-bs-target="#enrich"] {
  background-color: #7fad19; 
  color: #fff;
}

.tab-pane#enrich.active ~ .feature-tab {
  background-color: #fff3e0;
}

.nav-tabs .nav-link[aria-selected="true"][data-bs-target="#inte"] {
  background-color: #dc8161;
  color: #fff;
}

.tab-pane#inte.active ~ .feature-tab {
  background-color: #ede7f6;
}
#tabDropdown{
  padding: 20px;
  border-radius: 30px;
}
#tabDropdown option{
  border-radius: 20px;
  padding:10px
}

.app-integration-one .logo-wrapper .logo-box img {
    margin: 0 auto;
    max-width: 60%;
    border-radius: 30px;
}




/** html css **/
.chat-widget-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 32px 0;
  background: #f6f8fa;
  border-radius: 30px;
}

.widget-logo {
  width: 40px;
  height: 40px;
  margin-bottom: 16px;
}

.chat-widget {
  background: #fff;
  border: 2px solid #e1e4e8;
  border-radius: 18px;
  box-shadow: 0 2px 10px rgba(30,34,40,0.1);
  max-width: 520px;
  width: 100%;
  min-width: 260px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.chat-header {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #f6f8fa;
  padding: 14px 18px;
  font-weight: 500;
  border-bottom: 1px solid #e1e4e8;
  font-size: 1.05em;
}

.status-dot {
  width: 8px;
  height: 8px;
  background: #27c47c;
  border-radius: 50%;
  display: inline-block;
}

.chat-body {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 20px 16px 12px 16px;
  background: #fff;
  min-height: 120px;
}

.chat-bubble {
  opacity: 0;
  transform: translateY(18px) scale(0.98);
  background: #f0f3f7;
  border-radius: 13px;
  max-width: 85%;
  padding: 10px 15px;
  font-size: 16px;
  color: #24292f;
  margin-bottom: 2px;
  line-height: 1.48;
  box-shadow: 0 1px 2px rgba(30,34,40,0.025);
  animation: popup 3s ease-in infinite;
}

.chat-avatar {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  margin: 0 8px;
  background: #eaf3fb;
  object-fit: cover;
}
.chat-avatar.bot {
  order: 0;
}
.chat-avatar.user {
  order: 2;
}

.chat-bubble.bot {
  align-self: flex-start;
}

.chat-bubble.user {
  align-self: flex-end;
  background: #e6f0ff;
  color: #1757c2;
}
.chat-row {
  display: flex;
  align-items: flex-end;
}

.chat-row.bot {
  flex-direction: row;
  justify-content: flex-start;
}

.chat-row.user {
  flex-direction: row;
  justify-content: flex-end;
}

@keyframes popup {
  60% {
    opacity: 1;
    transform: translateY(-6px) scale(1.03);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.chat-footer {
  display: flex;
  align-items: center;
  padding: 10px 16px;
  background: #f6f8fa;
  border-top: 1px solid #e1e4e8;
  gap: 8px;
}

.chat-footer input {
  flex: 1;
  border: none;
  background: #eef2f6;
  padding: 10px 12px;
  border-radius: 9px;
  font-size: 16px;
  color: #aaa;
}

.chat-footer button {
  background: #d1d5da;
  border: none;
  border-radius: 24px;
  width: 36px;
  height: 36px;
  color: #fff;
  font-size: 1.3em;
  cursor: not-allowed;
}

/* Responsive Design */
@media (max-width: 480px) {
  .chat-widget {
    max-width: 98vw;
    min-width: 0;
  }
 .chat-body {
    padding: 10px 0px 10px 0px;
  }
  .chat-avatar {
    width: 22px;
    height: 22px;
  }
}

.status-dot {
  width: 8px;
  height: 8px;
  background: #14d464;
  border-radius: 50%;
}

.chat-body {
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* Dashboard Section */
.insights-dashboard {
  margin-top: 28px;
  max-width: 360px;
  width: 100%;
  display: flex;
  gap: 12px;
  flex-direction: column;
}

.insight-card {
  background: #fff;
  padding: 14px;
  border-radius: 12px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.04);
  border: 1px solid #e0e0e0;
  width: 200px;
}

.insight-card h4 {
  font-weight: 600;
  margin-bottom: 8px;
  font-size: 15px;
}

.bar-container {
  height: 6px;
  background: #e0e0e0;
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 6px;
}

.bar {
  height: 6px;
  border-radius: 4px;
  width: 0%;
  transition: width 2s ease;
}

/* Unique bars */
.success-rate {
  background: #18c964;
}
.resolution-time {
  background: #0070f3;
}

.value {
  font-weight: 600;
  font-size: 14px;
  color: #333;
}

/* Export Button */
.export-btn {
  display: inline-block;
  margin-top: 6px;
  padding: 6px 10px;
  font-size: 14px;
  background: #ededed;
  border: 1px solid #dcdcdc;
  border-radius: 6px;
  cursor: pointer;
  user-select: none;
}

/* Responsive */
@media (max-width: 500px) {
  .chat-widget, .insights-dashboard {
    max-width: 100%;
  }
}
.dashboard-graph-card {
  position: relative;
  max-width: 320px;
  width: 100%;
  height: 140px;
  background: #f8fafc;  /* pastel light background */
  border-radius: 18px;
  box-shadow: 0 4px 8px rgba(98,125,152,0.1);
  overflow: visible;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

/* Grid lines are static and subtle */
.background-grid {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  pointer-events: none;
}

/* Line path styling and drawing animation */
.graph-line {
  position: relative;
  z-index: 2;
}

.line-path {
  stroke-dasharray: 1000;
  stroke-dashoffset: 1000;
  animation: drawLine 2.5s ease forwards;
   animation-iteration-count: infinite;
  animation-direction: normal;
  stroke-linejoin: round;
  stroke-linecap: round;
}

@keyframes drawLine {
   0% {
    stroke-dashoffset: 1000;
  }
  90% {
    stroke-dashoffset: 0;
  }
  100% {
    stroke-dashoffset: 0;
  }
}

/* Data points dots fade/scale sequentially */
.dot.grph {
  fill: #627d98;
  opacity: 0;
  transform-origin: center;
  transform-box: fill-box;
   animation: showDot 0.3s forwards;
  animation-iteration-count: infinite;
  /* animation-fill-mode: forwards;
  animation-timing-function: ease; */
}

.dot.grph:nth-child(2)  { animation: showDot 0.3s forwards ease 2.5s; }
.dot.grph:nth-child(3)  { animation: showDot 0.3s forwards ease 2.75s; }
.dot.grph:nth-child(4)  { animation: showDot 0.3s forwards ease 3s; }
.dot.grph:nth-child(5)  { animation: showDot 0.3s forwards ease 3.25s; }
.dot.grph:nth-child(6)  { animation: showDot 0.3s forwards ease 3.5s; }
.dot.grph:nth-child(7)  { animation: showDot 0.3s forwards ease 3.75s; }
.dot.grph:nth-child(8)  { animation: showDot 0.3s forwards ease 4s; }

/* .dot.grph:nth-of-type(3)  { animation-delay: 2.75s; }
.dot.grph:nth-of-type(2)  { animation-delay: 2.5s; }
.dot.grph:nth-of-type(4)  { animation-delay: 3s; }
.dot.grph:nth-of-type(5)  { animation-delay: 3.25s; }
.dot.grph:nth-of-type(6)  { animation-delay: 3.5s; }
.dot.grph:nth-of-type(7)  { animation-delay: 3.75s; }
.dot.grph:nth-of-type(8)  { animation-delay: 4s; } */

@keyframes showDot {
   0% { opacity: 0; transform: scale(0); }
  60% { opacity: 1; transform: scale(1.1); }
  100% { opacity: 1; transform: scale(1); }
}

/* Inset card with smaller graph */
.inset-graph-card {
  position: absolute;
  top: 16px;
  right: 16px;
  background: #fff;
  border-radius: 16px;
  width: 110px;
  height: 70px;
  box-shadow: 0 8px 16px rgba(98,125,152,0.13);
  padding: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3;
}

/* Responsive scaling for smaller devices */
@media (max-width: 360px) {
  .dashboard-graph-card {
    max-width: 100%;
    height: 120px;
  }
  .inset-graph-card {
    width: 90px;
    height: 60px;
    padding: 8px;
  }
}
.chat-insights-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: center;
  padding: 32px 20px;
  background: #f6f8fa;
  overflow: hidden;
}

.insight-row,
.dashboard-row {
  width: 100%;
  display: flex;
  justify-content: center;
  position: relative;
}

.insight-card,
.dashboard-graph-card {
  background: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 16px;
  box-shadow: 0 4px 12px rgba(0,0,0,.05);
  /* width: auto; */
  padding: 16px;
  transition: transform 0.3s ease;
}

/* Crisscross positioning */
.insight-card.left {
  align-self: flex-start;
  /* transform: translateX(-20%); */
}

.dashboard-graph-card.right {
  align-self: flex-end;
  /* transform: translateX(20%); */
}

.insight-card.right {
  align-self: flex-end;
  /* transform: translateX(20%); */
}

.insight-card.center {
  margin: 0 auto;
  transform: none;
}

/* Responsive stack */
@media (max-width: 768px) {
  .insight-card.left,
  .insight-card.right,
  .dashboard-graph-card.right {
    transform: none;
    align-self: center;
  }
  .insight-card{
    width: auto;
  }
}


/* integrations img */
.circle-container {
  position: relative;
  width: 100%;       
  height: 0;
  
  max-width: 100%;      
  margin: auto;
}

.circle-container img {
  position: absolute;
  object-fit: contain;
  top: 50%;
  left: 50%;
  transform-origin: center center;
  will-change: transform;
}

.img1 {
  width: 100px;           
  height: 100px;
  transform-origin: 150% 50%;
  animation: rotateCCW 10s linear infinite;
  transform: translate(-50%, -50%) translateX(30%) ;
  left: 20% !important;
}
.img2 {
  width: 300px;           
  height: 300px;
  transform: translate(-39%, -50%);
  animation: rotateCCW 10s linear infinite;
  z-index: 10;
  left: 19% !important;
}
.img3 {
  width: 400px;         
  height: 400px;
  transform-origin: -50% 50%;
  animation: rotateCW 10s linear infinite;
  transform: translate(-14%, -50%) translateX(-30%) ;
}

@keyframes rotateCW {
  from {
    transform: translate(-50%, -50%) translateX(-100px) rotate(0deg);
  }
  to {
    transform: translate(-50%, -50%) translateX(-100px) rotate(360deg);
  }
}

@keyframes rotateCCW {
  from {
    transform: translate(-50%, -50%) translateX(100px) rotate(0deg);
  }
  to {
    transform: translate(-50%, -50%) translateX(100px) rotate(-360deg);
  }
}
.my-svg {
  animation: rotate 2s infinite linear;
}

@keyframes rotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.prod-block:hover{
  box-shadow: 0 8px 18px 0 rgb(221 221 231 / 65%);
}
/* .prod-block:hover img{
   transform: scale(1.03);
} */





/* .chat-widgets {
  display: flex;
  align-items: flex-end;
  background: #fff;
  border-radius: 22px;
  box-shadow: 0 2px 18px rgba(0,0,0,0.08);
  padding: 26px;
  gap: 26px;
  max-width: 500px;
  margin: 40px auto;
}

.chat-avatars {
  flex-shrink: 0;
  display: flex;
  align-items: center;
}

.chat-avatars img {
  width: 70px;
  height: 70px;
  border-radius: 18px;
  object-fit: cover;
  border: 2px solid #e2e2e2;
  box-shadow: 0 2px 6px rgba(0,0,0,0.04);
}

.chat-messages {
  display: flex;
  flex-direction: column;
  gap: 16px;
  min-height: 200px;
  flex: 1;
  justify-content: flex-end;
}

.chat-bubbles {
  max-width: 80%;
  padding: 12px 20px;
  border-radius: 20px 22px 10px 24px;
  background: #e9f5fe;
  color: #035aaa;
  font-size: 1rem;
  box-shadow: 0 1px 2px rgba(0,0,0,0.07);
  margin-bottom: 0.5rem;
  animation: popin 0.35s ease-out;
}

.chat-bubbles.user {
  background: #ffeedc;
  color: #d95100;
  align-self: flex-end;
}

.chat-bubbles.bot {
  align-self: flex-start;
}

@keyframes popin {
  from {
    opacity: 0;
    transform: translateY(40px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@media (max-width: 650px) {
  .chat-widgets {
    flex-direction: column;
    align-items: stretch;
    padding: 16px;
  }
  .chat-avatars {
    justify-content: center;
    margin-bottom: 20px;
  }
  .chat-messages {
    min-height: 140px;
  }
  .chat-bubbles {
    font-size: 0.95rem;
    padding: 10px 16px;
  }
} */
.img-chat-wrapper {
  position: relative;
  width: 100%;
  /* max-width: 520px; */
}

.main-img {
  width: 100%;
  border-radius: 18px;
  display: block;
    position: relative;
  z-index: 1; /* below overlay and chat */
}

/* Overlay to dim the image lightly */
.img-overlay {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  /* background: rgba(255, 255, 255, 0.4);  */
  border-radius: 18px;
  z-index: 2;
  pointer-events: none; /* so clicks pass through */
}

.chat-widgets {
  position: absolute;
  top: 47%;
  left: -9%;
  width: 325px;
  /* background: #fff; */
  border-radius: 22px;
  /* box-shadow: 0 5px 24px rgba(0,0,0,0.12); */
  padding: 22px 14px;
  z-index: 3;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.chat-message {
  display: flex;
  align-items: flex-end;
  margin-bottom: 6px;
}

.chat-message.user {
  flex-direction: row-reverse;
}

.chat-message .avatar {
  flex-shrink: 0;
  margin: 0 8px;
}

.chat-message .avatar img {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #e1e1e1;
  box-shadow: 0 1px 2px rgba(0,0,0,0.03);
}

.bubble {
  max-width: 205px;
  padding: 11px 11px;
  font-size: 12px;
  border-radius: 18px 18px 10px 18px;
  background: #e9f5fe;
  color: #035aaa;
  box-shadow: 0 1px 2px rgba(0,0,0,0.07);
  word-break: break-word;
  animation: popin 0.6s forwards;
}

.chat-message.user .bubble {
  background: #ffeedc;
  color: #d95100;
  border-radius: 18px 18px 18px 10px;
  align-self: flex-end;
}

@keyframes popin {
  from { opacity: 0; transform: translateY(28px) scale(0.975);}
  to   { opacity: 1; transform: translateY(0) scale(1);}
}

@media (max-width: 600px) {
  .img-chat-wrapper {
    max-width: 100%;
  }
  .chat-widgets {
    width: 66vw;
    left: -5vw;
        top: 30vw;
    padding: 11px 4vw;
  }
  .bubble {
    font-size: 12px;
    max-width: 150px;
  }
  .chat-message .avatar img {
    width: 36px;
    height: 36px;
  }
}
.chat-message {
  opacity: 0;
  transform: translateY(30px) scale(0.97);
  transition: opacity 0.6s, transform 0.6s cubic-bezier(0.3,0.7,0.4,1.4);
}

.chat-message.animate {
  opacity: 1;
  transform: translateY(0) scale(1);
}




/* .prod-nav-tabs.nav-tabs {
  display: flex;
  border-bottom: 1px solid #444;
  gap: 24px;
  overflow-x: auto;
}

.prod-nav-tabs .nav-link {
  background: none;
  border: none;
  font-size: 1rem;
  padding: 16px 24px;
  cursor: pointer;
  color: #ccc;
  display: flex;
  align-items: center;
  gap: 8px;
}

.prod-nav-tabs .nav-link.active {
  color: #fff;
  border-bottom: 3px solid #a084ee; 
}
.prd-tabs .tab-content {
  margin-top: 32px;
}
.prd-tabs .tab-pane {
  display: none;
}
.prd-tabs .tab-pane.active {
  display: block;
}
.prod-nav-tabs {
  display: flex;
  border-bottom: 1px solid #444;
  gap: 8px;
  overflow-x: auto;
  white-space: nowrap;
  scrollbar-width: thin;
}
.prod-nav-tabs .nav-link {
  min-width: 140px; 
  flex-shrink: 0;
} */


.tab-btn {
  border: none;
  background: #fff;
  color: var(--blue);
  min-width: 130px;
  font-size: 1rem;
  padding: 10px;
  transition: background 0.15s, color 0.15s;
  box-shadow: 0 2px 8px rgba(32,102,247,0.05);
}
.tab-btn.active {
  background: var(--blue);
  color: #fff;
}
.tab-btn:focus {
  outline: none;
  box-shadow: none;
}
.tab-nav .bi-arrow-right {
  margin: 0 10px;
  color: var(--blue);
}
@media (max-width: 576px) {
  .tab-btn { min-width: 86px; font-size: 0.9rem; padding:0.5rem 0.9rem;}
  .tab-nav .bi-arrow-right { font-size:1.1rem; margin:0 4px;}
}


@media (max-width: 767px) {
  .footer-one .bottom-footer ul li a {
    font-size: 13px;
  }
  .footer-one .bottom-footer p {
    font-size: 13px;
}
    .mob_footer {
        display: block !important;
    }
    .footer-one{
      padding-bottom: 60px !important;
    }
}

.mob_footer {
    display: none;
    position: fixed;
    bottom: 0;
    background: var(--blue);
    color: #000;
    width: 100%;
    z-index: 999;
    padding: 0;
    font-size: 14px;
    border-top: solid 3px var(--org);
    box-shadow: 10px 4px 13px 6px rgb(0 0 0 / .1);
}
.mob_footer ul {
    padding: 0;
    margin: 0;
    list-style: none;
}
.mob_footer ul li {
    width: calc(100% / 3 - 5px);
    display: inline-block;
}

.mob_footer ul li, .ph_col02, .svgdiv {
    text-align: center;
}
.mob_footer ul li a {
    display: flex
;
    color: #000;
    padding: 10px;
    line-height: 18px;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
}
.mob_footer ul li a span {
    line-height: 18px;
    color: #fff;
}



.scroll-x {
  display: flex;
  overflow: hidden;
  white-space: nowrap;
  width: 100%;
}

.scroll-x ul {
  display: flex;
  gap: 0px;
  animation: scrollLoop 20s linear infinite;
}

.scroll-x li {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 15px;
  white-space: nowrap;
  background: rgb(254 239 237);
    padding:7px 10px;
    border-radius: 30px;
    margin: 0 6px;
}

@keyframes scrollLoop {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}

/* Mobile only */
@media (min-width: 768px) {
  .scroll-x {
    overflow: visible;
  }
  .scroll-x ul {
    animation: none;
  }
}
/* br{
        display: none;
    } */

.btn-log{
    padding: 9px 15px;
    min-width: auto;
    line-height: 23px;
    font-size: 17px;
  }

  .iin-block{
    height: 50vh ;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .logo-1 {
    top: 10%;
    left: 10%;
    animation-delay: 0s !important;
    animation-fill-mode: both;
}

.logo-2 {
    top: 8%;
    left: 70%;
    animation-delay: 1s !important;
    animation-fill-mode: both;
}

.logo-4 {
    top: 80%;
    left: 20%;
    animation-delay: 3s !important;
    animation-fill-mode: both;
}

.logo-5 {
    top: 70%;
    left: 80%;
    animation-delay: 4s !important;
    animation-fill-mode: both;
}
.logo-7 {
    top: 60%;
    left: 10%;
    animation-delay: 1.5s !important;
    animation-fill-mode: both;
}
.logo-8 {
    top: 30%;
    left: 80%;
    animation-delay: 2.5s;
}
.logo-9 {
    top: 75%;
    left: 60%;
    animation-delay: 3.5s;
}
.floating-logo {
    position: absolute;
    width: 80px;
    animation: float 5s infinite ease-in-out;
}

@keyframes float {
   0% {
    transform: translateY(0px);
}
50% {
    transform: translateY(-20px);
}
100% {
    transform: translateY(0px);
}
}

@media (max-width: 575px) {
    .floating-logo {
        position: absolute;
        width: 40px !important;
        animation: float 5s infinite ease-in-out;
    }
     .logo-1 {
        top: 5% !important;
        left: 5%;
        animation-delay: 0s;
    }
    .logo-4 {
                top: 45% !important;
        left: 4% !important;
        animation-delay: 3s;
    }
    .logo-2 {
        top: 6% !important;
        left: 70%;
        animation-delay: 1s;
    }
        .logo-5 {
        top: 83% !important;
        left: 50% !important;
        animation-delay: 4s;
    }
    .logo-7 {
        top: 85% !important;
        left: 10%;
        animation-delay: 1.5s;
    }
        .logo-8 {
        top: 35% !important;
        left: 85% !important;
        animation-delay: 2.5s;
    }
    .logo-9 {
        top: 80% !important;
        left: 80% !important;
        animation-delay: 3.5s;
    }
    .iin-block{
    height: 50vh !important;
  }

}



.video-wrapper .sol-video {
    width: auto;
    height: auto;
    border-radius: 20px;
    object-fit: cover;
    object-position: top;
    border-radius: 20px;
}
.sol-btn {
    position: absolute;
    top: 11%;
    right: 20%;
    transform: translate(-50%, -50%);
    z-index: 2;
    background: #fff;
    color: #000;
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    font-size: 18px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
}
.span-txt{
  font-size:18px;
}
.hero-vd {
    border: none !important;
    outline: none !important;
    box-shadow: none !important;
    display: block; /* removes inline gap spacing */
    background: transparent; /* just in case */
     object-fit: cover;
}
.toggle-label {
  font-weight: 600;
  cursor: pointer;
  transition: color 0.3s ease;
}

.toggle-label.active {
  color: var(--org);
}

.toggle-btn {
  position: relative;
  width: 60px;
  height: 30px;
  background: #ddd;
  border-radius: 30px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.toggle-btn::after {
  content: "";
  position: absolute;
  top: 3px;
  left: 3px;
  width: 24px;
  height: 24px;
  background: #fff;
  border-radius: 50%;
  transition: transform 0.3s ease;
}

.toggle-btn.active {
  background: var(--blue);
}

.toggle-btn.active::after {
  transform: translateX(30px);
}
.time-sel{
  background: #fff;
    border: 1px solid #ccc;
    padding: 10px 14px;
    font-size: 17px;
    border-radius: 10px;
    height: 50px;
    margin-bottom: 8px;
    padding: 10px 14px;
    width: 100%;
}