/*AI lynkie Page css start*/
.common-padd {
    padding: 80px 15px;
}
.word-break-cnt {
   word-break: break-word;
}
.inner-pg-banner {
    position: relative; /* Required for overlay positioning */
    background-image: url(../images/png/inner-banner-image.png);
    height: 280px;
    width: 100%;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 50px;
    overflow: hidden; /* Optional: hide any overflow */
}

.inner-pg-banner::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background-color: var(--secondary-6);
    opacity: 0.82; /* Adjust the transparency here */
    z-index: 1;
}

.inner-pg-banner > * {
    position: relative;
    z-index: 2;
}

.inner-page-heading {
    font-size: var(--font-44);
    /* font-family: var(--font-Montserrat-bold); */
    color: var(--primary-1);
    margin-bottom: 0;
}
/*common End*/

/*Banner section start*/
.banner-section-ai {
    padding: 260px 0px 210px;
    background: radial-gradient(circle, rgba(24, 130, 196, 1) 5%, rgba(32, 66, 150, 1) 100%, rgba(255, 255, 255, 1) 44%);

}
.banner-text {
    max-width: 900px;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
}
.banner-title {
    color: var(--secondary-2);
    /* font-family: var(--font-Montserrat-bold); */
    font-size: var(--font-50);
    margin-bottom: 20px;
}
.banner-subtitle {
    color: var(--secondary-2);
    /* font-family: var(--font-Montserrat-regular); */
    font-size: var(--font-22);
    margin-bottom: 30px;

}
.primary-btn-white {
    display: block;
    position: relative;
}
.primary-btn-white::after {
    content: '';
    position: absolute;
    background: linear-gradient(90deg, #5362AB, #5A6EB5, #8CBEF6);
    width: 100%;
    height: 95%;
    top: 2px;
    left: 4px;
    border-radius: 30px;
}
.nav-fix .header-btn-sect .primary-btn-sect {
    padding: 8px 30px;
}
.primary-btn-sect {
    position: relative;
    display: inline-block;
    padding: 15px 40px;
    font-size: var(--font-16);
    /* font-family: var(--font-Montserrat-medium); */
    font-weight: 600;
    color: var(--primary-2);
    background: linear-gradient(180deg, #D2D9FB 0%, #CBD6FF 100%);
    border: none;
    border-radius: 999px;
    cursor: pointer;
    overflow: hidden;
    transition: all 0.4s ease;
    z-index: 9;
}
/* Shine effect */
.primary-btn-sect::before {
    content: "";
    position: absolute;
    top: 0;
    left: -75%;
    width: 50%;
    height: 100%;
    background: linear-gradient(
        120deg,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0.4) 50%,
        rgba(255, 255, 255, 0) 100%
    );
    transform: skewX(-20deg);
    z-index: 1;
}
/* Trigger shine animation on hover */
.primary-btn-sect:hover::before {
    animation: shine 0.8s ease-in-out;
}
@keyframes shine {
    0% {
        left: -75%;
    }
    100% {
        left: 125%;
    }
}
/* Keep original hover movement */
.primary-btn-sect:hover {
    color: var(--primary-2);
    text-decoration: none;
    transform: translate(1px, 1px);
}
.primary-btn-sect:active {
    transform: translate(3px, 3px);
    color: var(--primary-2);
}
/*Banner section end*/

/*Video Slider Section st*/
.bg-white {
   background: var(--secondary-2);
}
.video-section {
    display: flex;
    justify-content: center;
    align-items: center;
}
.main-title {
    color: var(--primary-3);
    margin-bottom: 20px;
    font-size: var(--font-40);
}
.video-thumbnail-wrapper {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}
.video-thumbnail-wrapper img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 15px;          
  transition: transform 0.4s ease;
}
.video-thumbnail-wrapper:hover img {
  transform: scale(1.05);
}
.video-thumbnail-wrapper .overlay {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  border-radius: 15px;
  pointer-events: none;
  background: linear-gradient(to bottom right, rgba(24, 130, 196, 0.2), rgba(0, 0, 0, 0.2));
  transition: background 0.4s ease;
}

.video-thumbnail-wrapper .overlay.active-overlay {
  background: linear-gradient(to bottom right, rgba(24, 130, 196, 0.5), rgba(0, 0, 0, 0.5));
}

.video-thumbnail-wrapper .overlay.hover-overlay {
  background: linear-gradient(to bottom right, rgba(24, 130, 196, 0.5), rgba(0, 0, 0, 0.5));
}

.video-thumbnail-wrapper .play-icon.active-pulse {
  animation: pulse 1.7s infinite;
}

.video-thumbnail-wrapper .play-icon.hover-pulse {
  animation: pulse 1.7s infinite;
}

.play-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) !important;
  font-size: 34px;
  color: var(--secondary-2);
  pointer-events: none;
  z-index: 2;
}

.play-icon::before,
.play-icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 40px;
  height: 40px;
  background: rgb(212, 212, 212);
  border-radius: 50%;
  transform: translate(-50%, -50%) scale(0.9);
  z-index: -1;
  opacity: 0; 
  pointer-events: none;
}

.play-icon::after {
  animation-delay: 1s;
}

.play-icon.active-pulse::before,
.play-icon.active-pulse::after,
.play-icon.hover-pulse::before,
.play-icon.hover-pulse::after {
  animation: double-pulse 1s infinite ease-in-out;
  opacity: 0.7;
}

@keyframes double-pulse {
  0% {
    transform: translate(-50%, -50%) scale(0.9);
    opacity: 0.7;
  }
  70% {
    transform: translate(-50%, -50%) scale(1.8);
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}

.video-sect-box {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.video-sect-box img {
    border-radius: 15px;
}

.item-v1 img {
    height: 355px;
    object-fit: cover;
}
.item-v1 {
    margin-top: 100px;
}
.item-v2 img {
    height: 340px;
    object-fit: cover;
}
.item-v2 {
    margin-top: 120px;
}
.item-v3 img {
    height: 250px;
    object-fit: cover;
}
.item-v4 img {
    height: 340px;
    object-fit: cover;
}

.item-v6 img {
    height: 370px;
    object-fit: cover;
}

#videoModal .modal-dialog {
  max-width: 500px; 
}

#videoModal .modal-content {
  border-radius: 10px;
  overflow: hidden;
}
#videoModal .modal-body {
  padding: 0;
  max-height: 450px;
}
#videoPlayer {
  width: 100%;
  height: auto;
  max-height: 450px;
  object-fit: contain;
}

.item-v4 .video-thumbnail.active-zoom {
  animation: continuous-zoom 2s infinite ease-in-out;
  transform-origin: center center;
}

.video-thumbnail.hover-zoom {
  animation: continuous-zoom 2s infinite ease-in-out;
  transform-origin: center center;
}
.video-thumbnail-wrapper {
  border-radius: 15px;
  overflow: hidden; 
}
.video-thumbnail {
  border-radius: 15px; 
  transition: transform 0.3s ease;
}
.modal-title {
  font-size: var(--font-22);
  /* font-family: var(--font-Montserrat-medium); */
}
/*Video section end*/

/*Process section start*/
.bg-light-gray {
   background-color: var(--secondary-2);
}
.main-process-bx {
    display: flex;
    flex-direction: column;
    gap: 20px;
}


/* .prc-box-01 {
  background: linear-gradient(to right, #B0B2E5, #989ACC);
}
.prc-box-02 {
  background: linear-gradient(to bottom, #6E7FC4, #3E4E99);
}
.prc-box-03 {
  background: linear-gradient(to right, #3A5DB0, #1A2E6E);
} */


.prc-box-01 {
  background: linear-gradient(to right, #7F81B8, #585AA0);
}
.prc-box-02 {
  background: linear-gradient(to bottom, #8595D9, #5E6CB2);
}
.prc-box-03 {
  background: linear-gradient(to right, #4063B5, #223C84);
}


.process-sect {
    padding: 40px;
    border-radius: 15px;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.prc-cnt-box {
    max-width: 600px;
}
.prc-number {
    width: 70px;
    height: 70px;
    background: var(--secondary-2);
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 100px;
}
.prc-number p {
    font-size: var(--font-30);
    /* font-family: var(--font-Montserrat-medium); */
    margin-bottom: 0px;
}
.prc-heading {
    color: var(--secondary-2);
    font-size: var(--font-30);
    margin-bottom: 10px;
}
.prc-cnt {
    color: var(--secondary-2);
    margin-bottom: 0px;
    font-size: var(--font-18);
}
/*Process section end*/

/*Present section start*/
.present-sect {
    padding: 80px 0px;
}
.main-title-white {
    color: var(--secondary-2);
    margin-bottom: 20px;
    font-size: var(--font-40);
}
.sub-heading-white {
    color: var(--secondary-2);
    /* font-family: var(--font-Montserrat-regular); */
    font-size: var(--font-22);
}
.bg-blue {
    background-color: var(--primary-1);
}
/*Present section end*/

/*Service section start*/
.service-item {
    background: var(--secondary-2);
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    border-radius: 15px;
    border-top: 10px solid var(--primary-1);
    transform: translate3d(0, 0, 0);
    padding: 30px 40px 40px;
    margin-top: 30px;
    transition: all 0.3s linear;
}
.service-item .service-content .title {
    /* font-family: var(--font-Montserrat-medium); */
    margin-top: 15px;
    margin-bottom: 0px;
    font-size: var(--font-24);
    line-height: 32px;
}
.service-item .service-content p {
  /* font-family: var(--font-Montserrat-regular); */
  margin-top: 10px;
  min-height: 120px;
  margin-bottom: 0px;
  font-size: var(--font-18);
}
.service-item:hover {
    transform: translateY(-5px) translate3d(0, -5px, 0);
}
.service-item.service-01, .service-item.service-03 {
    margin-top: 55px;
}
/*Service section end*/
/*Link section start*/
.applink-sect {
    gap: 10px;
}
.link-img-sect {
    display: flex;
    gap: 15px;
    justify-content: center;
}
.hm-img-box img {
    border-radius: 15px;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}
.link-img-sect img:hover {
    transform: scale(1.06);
}

.link-img-sect img {
    transition: transform 0.6s ease, color 0.6s ease;
    display: inline-block;
}
.pro-text {
    margin-bottom: 0px;
    font-size: var(--font-18);
}
.hm-link-cnt .main-title {
    text-align: left;
}
/*Link section end*/
/*Testimonial section start*/
.test-slide-sect {
  padding: 80px 0px;
}
.test-slide-sect {
    background: linear-gradient(171deg, rgb(187 222 245) 0%, rgb(249 249 249) 100%, rgb(127 206 255) 40%);
}
.item {
    padding: 10px 10px;
}
.item-sld {
    background: var(--secondary-2);
    padding: 80px 40px 50px;
    border-radius: 15px;
    position: relative;
    margin: 50px 0px;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}
.item-sld::after {
    content: '';
    position: absolute;
    top: -25px;
    left: 40px;
    background:url(../images/png/quote-left-top.png);
    width: 71px;
    height: 60px;
}
.item-sld::before {
    content: '';
    position: absolute;
    bottom: -25px;
    right: 40px;
    background:url(../images/png/quote-right-bottom.png);
    width: 71px;
    height: 60px;
}
.person-img img {
    height: 100px;
    width: 100px !important;
    border-radius: 50px;
    border: 4px solid var(--primary-1);
    object-fit: cover;
    object-position: top;
}
.sld-btm-sect {
    display: flex;
    margin-top: 30px;
    gap: 20px;
    align-items: center;
}
.sld-cnt {
  margin-bottom: 0px;
  font-size: var(--font-18);
}
.sld-heading {
    font-size: var(--font-20);
    /* font-family: var(--font-Montserrat-bold); */
    margin-bottom: 0px;
}
.sld-sub-heading {
  font-size: var(--font-16);
  /* font-family: var(--font-Montserrat-media); */
  color: var(--secondary-1);
  margin-bottom: 0px;
}
.home-silder .owl-dots {
  text-align: center;
  margin-top: 20px;
}

.home-silder .owl-dot {
  display: inline-block;
  margin: 0 5px;
  padding: 0;
  border: none;
  background: none;
  cursor: pointer;
}

.home-silder .owl-dot span {
  display: block;
  width: 21px;
  height: 7px;
  background-color: var(--secondary-2);
  border-radius: 5px;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.home-silder .owl-dot.active span {
  background-color: var(--primary-1);
  transform: scale(1.3);
  width: 32px;
}
.home-silder .owl-dots {
    position: absolute;
    top: -30px;
    right: 0;
}
/*Testimonial section end*/





/*present section st*/

.prs-card-box {
    background: var(--secondary-2);
    padding: 40px;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    border-radius: 15px;
}
.prs-heading {
    /* font-family: var(--font-Montserrat-bold); */
    color: var(--primary-1);
    margin-bottom: 8px;
    font-size: var(--font-24);
}
.prs-cnt {
    /* font-family: var(--font-Montserrat-regular); */
    margin-bottom: 0px;
    font-size: var(--font-18);
}
.prs-imgbox {
    margin-bottom: 30px;
}
/*present section end*/


/*Scroll up start*/
.scrollup {
   font-size: 40px;
   opacity: 1;
   position: fixed;
   bottom: 75px;
   right: 20px;
   color: var(--secondary-7);
   transition: 0.4s;
}
.scrollup:hover {
   opacity: 0.8;
}
/*Scroll up end*/

.btn-ai-video a {
    font-size: var(--font-18) !important;
    line-height: 24px !important;
    background-color: var(--primary-2);
    padding: 10px 20px 10px 48px !important;
    border-radius: 12px;
    display: flex;
    justify-content: center;
    height: 100%;
    align-items: center !important;
    position: relative !important;
    color: #fff !important;
    margin-right: 0px !important;
    margin-left: 20px !important;
}

.btn-ai-video a,.navbar-main ul .btn-ai-video a:hover {
    color: var(--white)!important
}
.navbar-main .btn-ai-video a:hover::after {
    content: unset!important
}
.btn-ai-video a::before {
    content: '';
    background-image: url('../images/svg/ai-video-icon.svg');
    height: 24px;
    width: 24px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-size: 90%;
    left: 10%
}


@media screen and (min-device-width: 768px) and (max-device-width: 991px) { 
  .container {
    max-width: 960px !important;
  }
}
@media only screen and (max-width: 1400px) {
  .service-item {
    padding: 30px 30px 40px;
  } 
}
@media only screen and (max-width: 1400px) {
  .step-box {
      padding: 20px;
  }
  .prc-img-icon {
      padding: 0px 10px;
  }
  .service-item .service-content p {
      min-height: auto;
  }
}
@media only screen and (max-width: 1199px) {
  .inner-page-heading {
      font-size: var(--font-36);
  }
  .inner-pg-banner {
    height: 200px;
  }
  .banner-title {
      font-size: var(--font-44);
  }
  .banner-subtitle {
      font-size: var(--font-20);
  }
  .applink-sect {
      gap: 0px;
  }
}
@media only screen and (max-width: 991px) {
    h1 {
      font-size: var(--font-32);
    }
    h2 {
      font-size: var(--font-28);
    }
    h3 {
      font-size: var(--font-24);
    }
    h4 {
      font-size: var(--font-22);
    }
    h5 {
      font-size: var(--font-20);
    }
    h6 {
      font-size: var(--font-18);
    }
    .prs-heading {
        font-size: var(--font-20);
    }
    .service-item .service-content .title {
      font-size: var(--font-20);
    }
    .app-title {
      font-size: var(--font-26);
    }
    .process-sect {
      padding: 30px;
    }
    .ft-row-sect {
      row-gap: 20px;
    }
    .banner-title {
      font-size: var(--font-40);
    }
    .item-v2 {
       margin-top: 20px;
    }
    .site-logo img {
        height: 44px;
        width: auto;
    }
    .nav-fix .site-logo img {
      height: 36px;
    }
    .nav-fix header#masthead {
      padding: 10px 0px;
    }
    .item-v6 img {
        height: 400px;
    }
    .item-v1 {
        margin-top: 0px;
    }
    .prs-card-box {
      padding: 20px;
    } 
    .prc-cnt-box {
      max-width: 450px; 
    }
    .contact-form-box {
      padding: 20px;
    }
    .scrollup {
      font-size: 34px;
      bottom: 75px;
      right: 15px;
    }
    
    .menu-primary-menu-container ul .btn-ai-video a {
        max-width: max-content;
        margin-left: 0px !important;
        padding: 10px 14px 10px 50px !important;
        text-align: center;
        margin-top: 15px;
        font-size: var(--font-16) !important;
    }
    .btn-ai-video a {
        padding: 2px 16px 2px 50px !important;
        
    }
}

@media only screen and (max-width: 767px) {
    .info-contact-section {
      padding: 0px 0 40px;
    }
    .gf-sect {
      row-gap: 20px;
      padding-bottom: 10px;
    }
    .primary-btn-sect {
      padding: 8px 26px;
      font-size: var(--font-14);
    }
    .nav-fix .header-btn-sect .primary-btn-sect {
        padding: 7px 24px;
        font-size: var(--font-12);
    }
    p,a,span,ul,ol {
      font-size: var(--font-16);
    }
    .inner-page-heading {
        font-size: var(--font-30);
    }
    .inner-page-content {
      padding-bottom: 30px;
    }
    .prs-main-box {
      row-gap: 20px;
    }
    .applink-sect {
        row-gap: 20px;
    }
    .banner-section-ai {
      padding: 160px 15px 140px;
    }
    .banner-title {
      font-size: var(--font-36);
    }
    .banner-subtitle {
      font-size: var(--font-18);
    }
    .item-v2 {
        margin-top: 20px;
    }
    .item-v6 {
        margin-top: 20px;
    }
    .item-v4 {
        margin-top: 20px;
    }
    .item-v1 {
        margin-top: 20px;
    }
    .video-sect-box img {
        height: 300px;
        object-fit: cover;
    }
    .person-img img {
      height: 80px;
      width: 80px !important;
     }
     .process-sect {
        padding: 20px 30px;
        align-items: flex-start;
        flex-direction: column;
        row-gap: 20px;
    }
    .prc-img {
        display: none;
    }
    .prc-number {
        width: 50px;
        height: 50px;
    } 
    .prc-number p {
        font-size: var(--font-24);
    }
    .prc-cnt-box {
        max-width: 500px;
    }
    .common-padd {
      padding: 40px 15px;
    }
    .test-slide-sect {
      padding: 40px 0px;
    }
    .service-item.service-01, .service-item.service-03 {
      margin-top: 30px;
    }
    .scrollup {
      font-size: 30px;
      bottom: 80px;
      right: 10px;
    }
    .error-page img {
      height: auto;
    }
    .menu-primary-menu-container ul .btn-ai-video a {
        line-height: 30px !important;
        padding: 2px 16px 2px 50px !important;
   }
}


@media only screen and (max-width: 575px) {
  .banner-title {
    font-size: var(--font-30);
  }
  .item-sld::after {
    width: 51px;
    height: 43px;
    background-size: cover;
    left: 20px;
  }
  .item-sld::before {
    width: 51px;
    height: 43px;
    background-size: cover;
    right: 20px;
  }
  .item-sld {
      padding: 40px 20px 30px;
  }
  .person-img img {
      height: 60px;
      width: 60px !important;
  }
  .sld-heading {
    font-size: var(--font-18);
  }
  .inner-pg-banner {
      height: 160px;
      margin-bottom: 30px;
  }
  .link-img-sect {
    flex-wrap: wrap;
}
    .test-slide-sect {
        padding: 40px 10px;
        overflow: hidden;
    }
}
/*AI lynkie Page css end*/
  .navbar-main ul li a {
    margin-right: 30px ;
   }
   .btn-signin a {
      margin-right: 0px !important;
   } 
   .navbar-main ul li:last-child a {
      margin-right: 0px !important;
      margin-left: 0px;
   }  
   @media only screen and (max-width: 1400px) {
   .btn-ai-video a {
    font-size: var(--font-16) !important;
    line-height: 22px !important;
    padding: 8px 20px 8px 48px !important;
    margin-left: 0px !important;
   } 
   
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .space-right {
      padding-right: 3%;
   }

   .space-left {
      padding-left: 3%;
   }
   .navbar-main ul li a {
    margin-right: 15px !important;
   }
 
}
@media only screen and (min-width: 1200px) and (max-width: 1600px) {
 .navbar-main ul li a {
    margin-right: 30px !important;
   }
   .btn-ai-video a {
      margin-left: 0px !important;
   }
}

/*Banner strip start*/
  .link-img-sect img {
       height: 50px; 
   }
   .banner-strip {
      background: var(--secondary-2);
      padding: 10px 0px;
   }
   .strip-ai-video-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      flex-wrap: wrap;
      gap: 20px;
   }
   .banner-strip-text p {
      margin-bottom: 0px;
   }
   .ai-video-button-banner a {
      font-size: var(--font-22);
      line-height: 24px;
      background-color: var(--black);
      padding: 20px 30px 20px 58px;
      border-radius: 12px;
      display: flex;
      justify-content: center;
      height: 100%;
      align-items: center;
      position: relative;
      color: var(--white);
   }
   .ai-video-button-banner a::before {
      content: '';
      background-image: url('/wp-content/themes/lynkie/assets/images/svg/ai-video-icon.svg');
      height: 24px;
      width: 24px;
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      background-size: 90%;
      left: 12%;
   }

   @media only screen and (max-width: 1199px) {
      .strip-ai-video-inner {
         justify-content: center;
         gap: 20px;
      }
   }
   @media only screen and (max-width: 991px) {
      .banner-strip-text p {
         text-align: center;
      }
   }

   /*Banner strip end*/