.elementor .apply-btn{#apply-btn {
transition: transform 0.25s ease;
}

#apply-btn:hover {
transform: scale(1.25);
}\n}.elementor .book-btn{.book-btn {
transition: transform 0.25s ease;
}

/* Scale only horizontally */
.book-btn:hover {
transform: scaleX(1.25);
}

/* Scale onl
y vertically */
.book-btn:hover {
transform: scaleY(1.25);
}

/* Scale both X and Y independently */
.book-btn:hover {
transform: scale(1.4, 1.1);
/*                  X    Y  */
}\n}