/* ============== customer success story css ===================================*/

.customer-success-section {
  display: flex;
  flex-wrap: nowrap;
  align-items: stretch;
  justify-content: center;
  width: 100%;
  height: 410px;
  gap: 0rem;
  margin: 0 auto;
  box-sizing: border-box;
  overflow: hidden;
}

/* LEFT PANEL - Logos */
.customer-success-section .logo-list {
  flex: 0 0 40%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: #ffffff;
  gap: 1.8rem;
  padding: 2.5rem;
  overflow: hidden;
  position: relative;
}

/* RIGHT PANEL - Content */
.customer-success-section .content-display {
  flex: 1;
  background-color: #f5f5f5;
  overflow-y: auto;
  padding: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.5s ease;
  position: relative;
}

/* ✅ Equal Logo Size */
.customer-success-section .logo-slot {
  flex-shrink: 0;
  width: 100%;
  height: 100px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  position: relative;
  transition: all 0.3s ease;
  border-radius: 12px;
}

.customer-success-section .logo-slot img {
  max-height: 90px;
  max-width: 100%;
  object-fit: contain;
}

/* Active Logo Styling */
.customer-success-section .logo-slot.active {
  background-color: #f0f0f0;
  transform: scale(1.02);
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.12) !important;
 }

/* Progress Bar (Under Logo) */
.logo-slot .autoplay-progress {
  position: absolute;
  bottom: -6px;
  left: 0;
  height: 3px;
  width: 0%;
  background: linear-gradient(90deg, #d81b60 0%, #f48fb1 100%);
  border-radius: 2px;
  transition: width 0.1s linear;
  z-index: 1;
}

/* Content Items */
.customer-success-section .content-item {
  display: none;
  max-width: 600px;
  font-size: 1.2rem;
  line-height: 1.5;
}
.customer-success-section .content-item.active {
  display: block;
}

/* === MOBILE VIEW === */
/* === MOBILE VIEW FIXES === */
@media (max-width: 768px) {
  .customer-success-section {
    flex-direction: column;
    height: auto;
    overflow: visible;
  }

  /* ✅ Logo section stays fixed (top area) */
  .customer-success-section .logo-list {
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: flex-start;
    overflow-y: hidden;
    gap: 1rem;
    padding: 1rem;
    background-color: #fff;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
    position: sticky;
    top: 0;
    z-index: 10; /* keep above content */
  }

  .customer-success-section .logo-slot {
    flex: 0 0 auto;
    max-width: 120px;
    height: 60px;
    border-radius: 8px;
    scroll-snap-align: center;
    position: relative;
    margin-bottom: 8px; /* ✅ create space for progress bar */
  }

  .customer-success-section .logo-slot > * {
    display: flex;
    width: 100%;
    height: 100%;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: inherit;
  }

  .customer-success-section .logo-slot img {
    pointer-events: none;
    max-height: 48px;
  }

  .customer-success-section .logo-slot.active {
    background-color: #e8e8e8;
    transform: scale(1.03);
  }

  /* ✅ Content stays below logo */
  .customer-success-section .content-display {
    padding: 1.5rem;
    height: auto;
    margin-top: 0;
  }

  .customer-success-section .content-item {
    max-width: 100%;
    font-size: 1rem;
  }

  /* ✅ progress bar position fix for mobile */
  .logo-slot .autoplay-progress {
    bottom: -4px;
    height: 3px;
  }
}


/*=======================home page 3rd section card animation.============================
 * =====================================================================================*/

.animationcard {
  transform-style: preserve-3d;
  will-change: transform;
  transform-origin: center;
  animation: straightCard linear both;
  animation-timeline: view(); /* works in Chrome, Edge, Safari */
  animation-range: entry 5% cover 35%;
}

@keyframes straightCard {
  from {
    transform: translate3d(0, 0, 0)
               scale3d(1, 1, 1)
               rotateX(25deg)
               rotateY(32deg)
               rotateZ(-17deg)
               skew(0deg, 0deg);
  }
  to {
    transform: translate3d(0, 0, 0)
               scale3d(1, 1, 1)
               rotateX(0deg)
               rotateY(0deg)
               rotateZ(0deg)
               skew(0deg, 0deg);
  }
}



.animationcard1 {
  transform-style: preserve-3d;
  will-change: transform;
  transform-origin: center;
  animation: straightCard1 linear both;
  animation-timeline: view(); /* works in Chrome, Edge, Safari */
animation-range: entry 5% cover 35%;
}

@keyframes straightCard1 {
  from {
    transform: translate3d(200px, 0px, 0px) /* start right */
               scale3d(1, 1, 1)
               rotateX(23.172deg)
               rotateY(-15.757deg)
               rotateZ(18.5376deg)
               skew(0deg, 0deg);
  }
  to {
    transform: translate3d(0px, 0px, 0px) /* move to center */
               scale3d(1, 1, 1)
               rotateX(0deg)
               rotateY(0deg)
               rotateZ(0deg)
               skew(0deg, 0deg);
  }
}



/*==================home page card split animation ==============================================
 * ============================================================================================*/

/* Base animation class */
.animationcardnew {
  transform-style: preserve-3d;
  will-change: transform;
  transform-origin: center;
  animation-timeline: view(); /* scroll-driven animation */
animation-range: entry 10% cover 40%;
}
 
/* Individual selectors */
.selector {
  transform: translate3d(94.543%, 0px, 0px);
  animation: slideRight linear both;
  animation-timeline: view();
  animation-range: entry 8% cover 35%;
}
 
.new-transform2 {
  transform: translate3d(-89.093%, 0px, 0px);
  animation: slideLeft2 linear both;
  animation-timeline: view();
  animation-range: entry 21% cover 37%;
}
 
.new-transform3 {
  transform: translate3d(-109.898%, 0px, 0px);
  animation: slideLeft3 linear both;
  animation-timeline: view();
  animation-range: entry 21% cover 37%;
}
 
.new-transform4 {
  transform: translate3d(-255.82%, 0px, 0px);
  animation: slideLeft4 linear both;
  animation-timeline: view();
  animation-range: entry 21% cover 37%;
}
 
/* Keyframes */
@keyframes slideRight {
   from { transform: translate3d(94.543%, 0px, 0px); }
  to   { transform: translate3d(0%, 0px, 0px); }
}
 
@keyframes slideLeft2 {
  from { transform: translate3d(-89.093%, 0px, 0px); }
  to   { transform: translate3d(0%, 0px, 0px); }
}
 
@keyframes slideLeft3 {
  from { transform: translate3d(-109.898%, 0px, 0px); }
  to   { transform: translate3d(0%, 0px, 0px); }
}
 
@keyframes slideLeft4 {
  from { transform: translate3d(-255.82%, 0px, 0px); }
  to   { transform: translate3d(0%, 0px, 0px); }
}


/*================= Home Page Let's Talk Popup CSS =========================================*/

.fluent_form_24 textarea[name="description"] {
    height: 60px !important;
    min-height: 80px !important;
    max-height: 100px;
    padding: 8px 10px;
    font-size: 14px;
    line-height: 1.2;
}
.fluent_form_24 .ff-el-input--content {
    margin-bottom: -23px;
    margin-right: -4px;
}

.fluentform_wrapper_24.ffs_custom_wrap .ff_submit_btn_wrapper .ff-btn-submit:not(.ff_btn_no_style) {
    width: 102% !important;
   max-width: 120%;
	border-radius: 3px;
}
.fluentform_wrapper_24 .choices__list--dropdown .choices__item {
    text-align: left !important;
    justify-content: flex-start !important;
	
}
.fluentform_wrapper_24.ffs_custom_wrap .ff-el-input--content input, .fluentform_wrapper_24.ffs_custom_wrap .ff-el-input--content .ff-el-form-control.ff_stripe_card_element, .fluentform_wrapper_24.ffs_custom_wrap .ff-el-input--content textarea, .fluentform_wrapper_24.ffs_custom_wrap .ff-el-input--content select, .fluentform_wrapper_24.ffs_custom_wrap .choices__list--single, .fluentform_wrapper_24.ffs_custom_wrap .choices[data-type*='select-multiple'] {
    background-color: #fff !important;
	    border-radius: 3px !important;
	border-width:0px ;
	 }
	.fluent_form_24 .ff-el-input--content {
    margin-bottom: -23px;
    margin-right: -4px;
}
.page-id-2 .ff-default .ff-el-form-check label.ff-el-form-check-label {
    margin-left: -3px !important;
    font-size: 15px;
    margin-right: 11px !important;
}

	 .fluent_form_24 .ff-el-form-control {
	font-size: 14px !important;
	 }
@media (min-width: 640px) {
    .frm-fluent-form .choices__list--dropdown .choices__item--selectable {
        padding-right: 100px;
    }
	
}
.frm-fluent-form .choices__list--dropdown .choices__item {
    font-size: 14px;
    padding: 10px;
    position: relative;
}
.fluentform_wrapper_24 .choices__list--dropdown .choices__item {
    padding-top: 8px !important;
}
	 .fluent_form_24 {
		 width: 520px !important;
	 }
	
/* Mobile override */
@media screen and (max-width: 768px) {
    .fluentform_wrapper_24.ffs_custom_wrap .ff_submit_btn_wrapper .ff-btn-submit:not(.ff_btn_no_style) {
        width: 290px;
    }
.fluentform_wrapper_24 .choices__list--dropdown .choices__item {
    padding-top: 3px !important;
}	
}
.fluent_form_24 .iti__country-list {
		 max-width:222px !important;
	 }
@media (max-width: 768px) {
    .ff_submit_btn_wrapper {
        height: auto !important;
    }
	.fluent_form_24 .iti__country-list {
		 max-width:290px !important;
	 }
}
	.fluentform_wrapper_24 .choices__inner {
    text-align: left !important;
}

.fluentform_wrapper_24 .choices__input--cloned {
    text-align: left !important;
    justify-content: flex-start !important;
}

#popup-box24.success-mode24 {
/*     max-height: 350px;
    height: 343px;
    width: 337px; */
	 max-height: 260px;
    min-height: 236px !important;
    height: 220px;
    width: 296px;
    transition: all 0.3s ease;
}

        /* Popup styles */
        #custom-popup24 {
            display: none;
            position: fixed;
            top: 0; left: 0;
            width: 100%;
            height: 100%;
			background: rgb(56 59 64 / 53%);
            backdrop-filter: blur(5px);
            z-index: 9999;
            justify-content: center;
            align-items: center;
			
        }
		
        #popup-box24 {
            background:#F5F5F5;
            padding: 20px 20px 30px;
/*             border-radius: 15px; */
/*             width: 400px; */
			    width: 522px;
            max-width: 90%;
/* 			height: 465px; */
			min-height:280px;
			height:auto;
            text-align: center;
/*             box-shadow: 0 5px 20px rgba(0,0,0,0.2); */
            position: relative;
			top:25px !important;	
    border-radius: 15px !important;
    border-width: 0px;
    box-shadow: 0px 1px 15px 4px rgba(0, 0, 0, 0.2);
         }

	  #popup-close24 {
 position: absolute;
    top: -12px;
    right: -23px;
    background: #687882;
/* 		border: 1px solid #fff; */
		border:1px solid #c9c9c9;
    color: #c9c9c9;
    border-radius: 50%;
    width: 21px;
    height: 20px;
    padding-bottom: 0px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 19px;
    font-weight: bold;
    cursor: pointer;
}
	 #popup-close24:hover {
		  background: #000;
		border:1px solid #c9c9c9;
    color: #fff;
	 }
		#popup-box24 .ff-el-form {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    padding: 20px;
    border-radius: 10px;
}
	/* Scoped only to Fluent Form ID 73 */
.ff-default .ff-el-form-control {
    max-width: 100% !important;
}

			
 @media (max-width: 768px) {

	 #popup-box24 {
text-align: left !important;
}
	 #popup-box24 img {
		 padding-left:70px !important;
	 }
	 #fluentform_24 input[type="email"] {
		 margin-top: -14px !important;
	 }
	.fluent_form_24 .ff-el-input--content input[type="text"],
	 .fluent_form_24 .ff-el-input--content input[type="email"],
	  .fluent_form_24 .ff-el-input--content input[type="tel"]
	 {
     max-width: 270px !important;
        width: 269px !important;
}
	 .fluent_form_24 .ff-el-input--content select[name="dropdown"] ,.fluent_form_24 .ff-el-input--content textarea[name="description"]{
		 max-width: 280px !important;
    width: 267px !important;
    margin-left: -6px !important;
	 } 
.fluent_form_24 {
        max-width: 304px !important;
    }
	 #popup-box24 {
             max-width: 81% !important;
    }
 #popup-box24 {
     top: -4px !important;
	 padding: 20px 13px 30px;
	 min-height: 295px;
/* 	 height:587px !important; */
	 height:auto;
	 }
/* 	 .fluent_form_24 {
    max-width: 342px !important;
  } */
	 .fluentform_wrapper_24.ffs_custom_wrap .ff-el-input--content input {
    margin-left: -8px;
}

	 }
	 @media (max-width: 768px) {
 .fluentform_wrapper_24.ffs_custom_wrap .ff-el-input--content input, .fluentform_wrapper_24.ffs_custom_wrap .ff-el-input--content .ff-el-form-control.ff_stripe_card_element, .fluentform_wrapper_24.ffs_custom_wrap .ff-el-input--content textarea, .fluentform_wrapper_24.ffs_custom_wrap .ff-el-input--content select, .fluentform_wrapper_24.ffs_custom_wrap .choices__list--single, .fluentform_wrapper_24.ffs_custom_wrap .choices[data-type*='select-multiple']  {
      border-width: 0.5px !important;
  }
}
@media (max-width: 768px) {
#popup-box24.success-mode24 {
	max-height: 360px !important;
    
	width: 302px !important;
     height: 250px !important;
   }
 
#fluentform_24 .ff-el-input--content .iti--allow-dropdown{
    margin-bottom: 14px !important;
	}
	#fluentform_24 .iti--allow-dropdown input.iti__tel-input, .iti--allow-dropdown input.iti__tel-input[type=tel], .iti--allow-dropdown input.iti__tel-input[type=text] {   
    width: 263px !important;   
    margin-bottom: 16px !important;
		margin-left: -8px;
}
#fluentform_24 textarea#ff_24_7_message {
    margin-top: 7px;
}	
}
	.talktoanexpert {
    pointer-events: auto !important;
}

.talktoanexpert * {
    pointer-events: none;
}
.talktoanexpert {
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
}

	 .freetrialsubhead {
		 font-weight:400;
	 }
.frm-fluent-form .choices[data-type*=select-multiple] .choices__input {
        font-size: 14px !important;
    font-family: -apple-system, "system-ui", Segoe UI, Roboto, Oxygen-Sans, Ubuntu, Cantarell, Helvetica Neue, sans-serif !important;
/*     margin-left: -109px !important; */
}
.fluentform_wrapper_24.ffs_custom_wrap .ff-custom_html {
   margin-top: -25px !important;
    margin-bottom: 7px !important;
	font-weight: 550 !important;
    font-size: 16px !important;
    line-height: 1.4;
}

.frm-fluent-form .choices__list--dropdown .choices__list {
    max-height: 150px !important;
}

.popup-banner-align {
  padding-left: 400px;
}
	 body.popup-open {
    overflow: hidden;
}
  @media (max-width: 768px) {
    form.fluent_form_24 .wpf_has_custom_css.ff-btn-submit {
    margin-top: 2px;
    margin-bottom: -34px;
}
}   




/* ============= New Logo Slider Sec CSS =============================================*/

