/* Royal Blue Button Styles */
        .btn-royal-blue {
            background-color: #000000;
            transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
            display: inline-flex;
            align-items: center;
            justify-content: center;
            line-height: 1;
        }

.btn-royal-blue:hover {
            background-color: #1f1f1f;
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
            backdrop-filter: blur(8px);
        }