.ce-heading {
    margin: 20px auto;
    padding: 20px;
    text-align: center;
    max-width: 800px;
}
.ce-heading .title {
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 10px;
}
.ce-heading .sub-title {
    font-size: 18px;
    color: #666;
    margin-bottom: 15px;
}
.ce-heading .title-desc {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 15px;
}
.ce-heading .btn-theme {
    display: inline-block;
    padding: 10px 20px;
    background: #333;
    color: #fff;
    text-decoration: none;
    border-radius: 4px;
    margin: 5px;
}
.ce-heading .btn-theme:hover {
    background: #555;
}

.ce-heading-image-pdf{
  display: block;
    padding: 35px 25px;
    background: #f6f6f6;
    color: #1b1815;
    text-decoration: none;
    border-radius: 5px;
    border: 1px solid #211d4e4f;
    margin-bottom: 5px;
    min-height: 230px;
}
.ce-heading-image-pdf.heightiskofile{min-height: 270px;}
.ce-heading-image-pdf h2{
  font-size: 16px;
  letter-spacing: 0.3px;
    line-height: 22px;
    color: #000000;
    font-weight: 500;
    margin-bottom: 15px;
    margin-top: 15px;
}

.pxl-button {
	font-family: 'Monda', sans-serif;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    height: 48px;
    padding: 0 35px;
    border-radius: 50px;
    background: #00569E;
    color: #fff;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    transition: 0.3s;
}

/* TEXT */
.pxl-button-text {
    display: flex;
    align-items: center;
    gap: 10px;
    position: relative;
    padding-left: 0px; /* 👈 IMPORTANT (space for left arrow) */
}
/* ICON BASE */
.pxl-button-icon {
    display: flex;
    align-items: center;
    transition: 0.35s ease;
}

/* RIGHT ICON (default) */
.icon-main {
    transform: translateX(0);
    opacity: 1;
}

/* LEFT ICON (hidden) */
.icon-duplicated {
    position: absolute;
    left: 0px; /* adjust as per design */
    transform: translateX(-10px);
    opacity: 0;
}

/* HOVER */
.pxl-button:hover {
    background: #fff;
    color: #00569E;
    border: 1px solid #00569E;
}

/* TEXT MOVE */
.pxl-button:hover .pxl-button-text {
    transform: translateX(10px);
	 padding-left: 20px;
}

/* RIGHT ICON OUT */
.pxl-button:hover .icon-main {
    transform: translateX(10px);
    opacity: 0;
}

/* LEFT ICON IN */
.pxl-button:hover .icon-duplicated {
    transform: translateX(0);
    opacity: 1;
}