.custom-popup-overlay {
     position: fixed;
     inset: 0;
     background-color: rgba(0, 0, 0, .8);
     display: none;
     align-items: center;
     justify-content: center;
     z-index: 999;
}
 .custom-popup-overlay.show {
     display:flex;
}
.custom-popup-overlay .custom-popup {
     max-width: calc(100% - 40px);
     box-shadow: 0 20px 60px rgba(0,0,0,0.30);
     opacity: 0;
     transform: translateY(10px) scale(.97);
     transition: opacity .25s ease, transform .25s ease;
     display: flex;
     gap: 24px;
     position: relative;
     width: 780px;
     background-color: #000000;
     background-image: url(https://webledger.in/wp-content/uploads/2025/11/Black-Friday.png);
     background-position: center center;
     background-repeat: no-repeat;
     background-size: cover;
     border-radius: 32px;
     padding: 20px;
}
.custom-popup-overlay .custom-popup.show {
     opacity: 1;
     transform: translateY(0) scale(1);
}
.custom-popup-overlay .popup-left {
     display: flex;
     flex-direction: column;
     gap: 10px;
     justify-content: center;
     width: 44%;
     padding-left: 10px;
}
.custom-popup-overlay .popup-left img.logo {
     width: 144px;
     margin: 0 auto;
}
.custom-popup-overlay .popup-left .popup-title {
     font-family: "Clash Display", Sans-serif;
     font-size: 36px;
     font-weight: 700;
     letter-spacing: 1.7px;
     color: #FFFFFF;
     line-height: normal;
}
.custom-popup-overlay .popup-left .popup-sub {
     color: #FFFFFF;
     font-family: "Clash Display", Sans-serif;
     font-size: 22px;
     font-weight: 300;
     line-height: 1.1em;
}
.custom-popup-overlay .popup-right {
     min-height: 240px;
     border: 1px dashed #cccccc;
     border-radius: 12px;
     padding: 18px;
     display: flex;
     align-items: center;
     justify-content: center;
     color: #999;
     font-size: 16px;
     text-align: center;
     background: #fff;
     width: 48%;
}
.custom-popup-overlay .popup-right #bookDemoBtn{
     background: #000;
     border-radius: 50px;
}
 .popup-close {
     position: absolute;
     right: 18px;
     background: transparent;
     border: none;
     cursor: pointer;
     opacity: 0.65;
     color: #fff;
     top: 0;
     padding: 0;
     padding-top: 10px;
     font-size: 25px;
}
.custom-popup-overlay .popup-close:hover {
     opacity: 1;
     background: transparent;
}
 @media (max-width: 900px) {
    .custom-popup-overlay .custom-popup {
         flex-direction: column;
         padding: 20px;
         max-width: 375px;
    }
   .custom-popup-overlay  .popup-left, .custom-popup-overlay .popup-right {
         width: 100%;
         text-align: center;
    }
    .custom-popup-overlay .popup-left .popup-title{
        font-size:22px;
    }
    .custom-popup-overlay .popup-left .popup-sub{
        font-size: 18px;
    }
}
