@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;600;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Montserrat', sans-serif;
}

html {
    scroll-behavior: smooth;
    /* Smooth scrolling effect */
}

.goog-te-banner-frame {
    display: none !important;
}

.goog-te-gadget-simple {
    display: none !important;
}

.goog-te-gadget-icon {
    display: none !important;
}

body {
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #fff;
    /* White text for contrast */
    background: linear-gradient(135deg,
            #121212,
            /* Rich Black */
            #3b3b3b,
            /* Steel Gray */
            #3a0ca3,
            /* Vivid Purple */
            #9a0680,
            /* Dark Magenta Pink */
            #0077b6
            /* Deep Ocean Blue */
        );
    background-size: 400% 400%;
    animation: gradientAnimation 10s ease infinite;
    padding: 10px;
}

/* Smooth Animation for the Gradient */
@keyframes gradientAnimation {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 700;
    margin-bottom: 15px;
    color: #222;
    /* Darker shade */
    text-transform: capitalize;
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.5rem;
}

.scroll-to-top {
    position: fixed;
    bottom: 80px;
    /* Above Chat Support */
    right: 15px;
    cursor: pointer;
    z-index: 1000;
}

.scroll-to-top img {
    width: 80px;
    height: 100px;
    padding: 10px
}

.scroll-to-top {
    position: fixed;
    display: none
}

/* Floating Menu - Fixed at Center Left */
#floating-menu {
    position: fixed;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    gap: 10px;
    z-index: 1000;
}

/* Floating Button - Hover Effects */
#floating-button {
    background: transparent;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    border-radius: 50%;
}

/* Hover Effect - Button */
#floating-button:hover {
    transform: scale(1.1);
    /* Slightly Enlarges */
}

/* Hover Effect - Button Icon */
#floating-button:hover i {
    color: white;
    transform: rotate(360deg);
    /* Spins on Hover */
    transition: transform 0.5s ease-in-out;
}


/* Floating Options (Hidden by Default) */
#floating-options {
    display: none;
    flex-direction: column;
    gap: 8px;
}

/* Floating Item Styles */
.floating-item {
    background: black;
    padding: 8px 12px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    text-decoration: none;
    color: white;
    box-shadow: 0 3px 5px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease-in-out;
    white-space: nowrap;
}

.floating-item i {
    font-size: 16px;
    color: #32CD32;
    /* Lime Green */
    transition: color 0.3s ease-in-out;
}

/* Hover Effect */
.floating-item:hover {
    transform: translateX(5px);
    background: #1f1f1f;
}