/* =====================================
   GLOBAL RESET
===================================== */
* {
    font-family: 'Poppins', sans-serif;
}

html {
    scroll-behavior: smooth;
}

html, body {
    margin: 0;
    padding: 0;
    overflow-x: hidden; /* <-- IMPORTANT */
    background: #000;   /* <-- Ensures no white shows at edges */
}

/* ===============================
   CLEAN FLOATING CALENDLY BUTTON
   (Replaces old broken overrides)
=============================== */

#calendly-floating-btn {
    position: fixed;
    bottom: 28px;
    right: 28px;
    background: #0d6efd;
    color: #fff;
    font-weight: 600;
    padding: 14px 32px;
    border: none;
    border-radius: 40px;
    font-size: 16px;
    cursor: pointer;
    transition: 0.2s ease;
    z-index: 999999;
    box-shadow:
        inset 0 1px 4px rgba(255,255,255,0.4),
        inset 0 -2px 4px rgba(0,0,0,0.15),
        0 3px 10px rgba(0,0,0,0.35);
}

#calendly-floating-btn:hover {
    background: #0b5cd5;
    transform: translateY(-2px);
}

#calendly-floating-btn:active {
    transform: scale(0.98);
}