body {
    font-family: 'Poppins', sans-serif !important;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
    font-family: 'Poppins', sans-serif !important;
}

@media (max-width: 475px) {
    body {
        zoom: 77%;
    }
    .chat-component {
        width: 100% !important;
        left: 50% !important;
        transform: translate(-50%, 0) !important;
    }

    .chat-component:hover,
    .chat-component:focus-within {
        transform: translate(-50%, 0);
    }

    .chat-component:not(.collapsed) {
        height: 80% !important;
        overflow-y: auto !important;
    }

    .chat-content:not(.hidden) {
        display: flex;
        flex-direction: column;
        height: 100%;
    }

    .chat-options {
        flex-grow: 1;
        overflow-y: auto;
    }
}

.btn-primary {
    background-color: black !important;
    color: white !important;
    border-color: white !important;
    transition: all 0.3s ease !important;
}

.btn-primary:hover,
.btn-primary:focus,
.btn-primary:active,
.btn-primary:not(:disabled):not(.disabled):active,
.btn-primary:not(:disabled):not(.disabled).active,
.show > .btn-primary.dropdown-toggle {
    background-color: white !important;
    color: black !important;
    border-color: black !important;
    transform: scale(1.05) !important;
}

/* Ensure no blue outline on focus */
.btn-primary:focus,
.btn-primary.focus {
    box-shadow: 0 0 0 0.2rem rgba(0, 0, 0, 0.5) !important;
}

/* Animation for text color change */
@keyframes textColorChange {
    0% { color: white; }
    100% { color: black; }
}

/* Animation for background color change */
@keyframes bgColorChange {
    0% { background-color: black; }
    100% { background-color: white; }
}

.btn-primary:hover,
.btn-primary:focus,
.btn-primary:active {
    animation: textColorChange 0.3s forwards, bgColorChange 0.3s forwards !important;
}

.custom-navbar {
    background-color: black !important;
        /* Default color */
    .btn {
        background-color: black;
        color: white;
        border-color: rgb(0, 0, 0);
    }

                .btn:hover {
                    background: linear-gradient(45deg, rgba(13, 189, 253, 0.6), rgba(110, 7, 255, 1), rgba(120, 15, 255, 0.9), rgba(130, 20, 255, 0.348), rgba(140, 25, 255, 0.7));
                    color: black;
                    border-color: rgb(255, 255, 255);
                    transition: background 0.5s ease-in-out, color 0.5s ease-in-out, border-color 0.5s ease-in-out, transform 0.5s ease-in-out;
                    /* Add transition for smooth gradient animation */
                    animation: hover-animation 1s infinite alternate;
                    /* Add animation for unique effect */
                }
        
                @keyframes hover-animation {
                    0% {
                        transform: scale(1);
                    }
        
                    50% {
                        transform: scale(1.25);
                    }
        
                    100% {
                        transform: scale(1);
                    }
                }
    .nav-link {
        font-size: 1.4rem !important;
        font-weight: bold !important;
        color: rgba(153, 247, 255, 0.618) !important;
        animation: rgb-glow 17s infinite linear, gradient-animation 5s ease infinite !important;
        background: linear-gradient(-45deg, #ee7752, #e73c7e, #23a6d5, #234fd5) !important;
        background-size: 200% 400% !important;
        background-clip: text !important;
        -webkit-background-clip: text !important;
        -webkit-text-fill-color: transparent !important;
    }

    .nav-link:hover {
        text-shadow: 0 0 10px rgba(255, 255, 255, 0.8) !important;
        color: rgba(255, 255, 255, 1) !important;
    }

    .navbar-toggler-icon {
        background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='30' height='30' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.55%29' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") !important;
    }
}
.custom-navbar.non-white-body {
    background-color: #00000031 !important;
    backdrop-filter: blur(10px) !important;
    -webkit-backdrop-filter: blur(10px) !important;
}
/* conversation.css */
.conversation-item {
    display: flex;
    align-items: center;
    padding: 10px;
    border-bottom: 1px solid #ccc; /* Add a subtle separator */
    cursor: pointer;
}

.conversation-item:hover {
    background-color: #f0f0f0; /* Hover effect */
}

.user-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin-right: 10px;
    position: relative;
}

.status-dot {
    position: absolute top left; /* Position it relative to the parent container */
    z-index: 1;
    top: 0;           
    /* Adjust these values to position the dot */
    right: 0;         
    /* as needed, possibly over the bottom-right */
    height: 10px;     /* corner of the avatar. */
    width: 10px;
    border-radius: 50%;
    border: 2px solid white; /* Optional: to make it stand out over the avatar */
    
    /* background-color: #ff6666; */
    display: inline-block;
    margin-right: 5px;
}

.status-dot.online {
    background-color: green;
}

.status-dot.offline {
    background-color: grey;
}

.user-name {
    font-weight: bold;
    font-size: 1em;
}

.last-message {
    color: #555;
}

.timestamp {
    font-size: 0.8em;
    color: #999;
   
}

.unread-badge {
    background-color: red;
    color: white;
    border-radius: 50%;
    padding: 2px 6px;
    font-size: 0.7em;
    top: 10px;
    right: 10px;
}
.p-picture {
    width: 100px;
    /* Adjust the width as needed */
    height: 100px;
    /* Adjust the height as needed */
    object-fit: cover;
    /* This makes sure the image covers the area without losing its aspect ratio */
    border-radius: 50%;
    /* Optional: makes the image circular */
}

/* for Offcanvas */
.offcanvas-wordmark a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

.offcanvas-wordmark a:hover,
.offcanvas-wordmark a:active {
    color: #ff6666 !important;
}

/* Offcanvas Styling */
.offcanvas {
    background-color: rgba(0, 0, 0, 0.7) !important;
    backdrop-filter: blur(10px) !important;
    -webkit-backdrop-filter: blur(10px) !important;
}

.offcanvas-header,
.offcanvas-body {
    color: #ffffff !important;
}

.offcanvas-title {
    color: #ffffff !important;
}

.btn-close {
    filter: invert(1) grayscale(100%) brightness(200%);
}

/* Override Bootstrap defaults */
.offcanvas .list-group-item {
    background-color: transparent !important;
    color: #ffffff !important;
    border-color: rgba(255, 255, 255, 0.1) !important;
}

.offcanvas .list-group-item:hover {
    background-color: rgba(255, 255, 255, 0.1) !important;
}

.offcanvas .nav-link {
    color: #ffffff !important;
}

.offcanvas .nav-link:hover,
.offcanvas .nav-link:focus {
    color: #f0f0f0 !important;
}

/* Ensure all text is readable */
.offcanvas p,
.offcanvas h1,
.offcanvas h2,
.offcanvas h3,
.offcanvas h4,
.offcanvas h5,
.offcanvas h6,
.offcanvas span,
.offcanvas a {
    color: #ffffff !important;
}

/* Style scrollbars for webkit browsers */
.offcanvas::-webkit-scrollbar {
    width: 8px;
}

.offcanvas::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.1);
}

.offcanvas::-webkit-scrollbar-thumb {
    background-color: rgba(255, 255, 255, 0.3);
    border-radius: 4px;
}
/* Footer styles */
footer.footer {
    background-color: transparent !important;
}

footer.footer .container {
    background-color: transparent;
}

footer.footer .text-muted {
    color: inherit !important;
}


/* for Profileeeee */
.hidden {
    display: none;
}

.visible {
    display: block;
}

.chat-header,
.chat-intro,
.chat-options,
.chat-input,
.chat-input-features,
.send-button {
    padding: 10px;
    border-bottom: 0;
}


.chat-input-features,
.send-button {
    text-shadow: 0 0 5px rgba(255, 255, 255, 0.5) !important;
    transition: text-shadow 0.3s ease-in-out;
}


.chat-input-features:hover,
.send-button:hover {
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.8);
}

@keyframes glow {
    0% {
        text-shadow: 0 0 3px rgba(255, 255, 255, 0.5);
    }
    50% {
        text-shadow: 0 0 10px rgba(255, 255, 255, 0.8);
    }
    100% {
        text-shadow: 0 0 3px rgba(255, 255, 255, 0.5);
    }
}


.chat-input-features,
.send-button {
    animation: glow 2s infinite linear !important;
}

.chat-header {
    background-color: #f8f8f8;
    text-align: center;
}

.chat-intro {
    background-color: #fff;
}

.chat-options .option {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 10px;
}

.chat-input {
    display: flex;
}

.chat-input input {
    flex-grow: 1;
    padding: 10px;
    border: none;
}

.chat-input-features button,
.send-button button {
    background: none;
    border: none;
    font-size: 1.2em;
}

.send-button {
    display: flex;
    justify-content: flex-end;
    padding: 10px;
}

/* User SERVICE ROLE */
.user-tag {
    display: inline-block;
    background-color: #7700ff;
    color: white;
    padding: 5px 10px;
    margin: 2px;
    border-radius: 15px;
    font-size: 0.8em;
}

/* landing pgtrato */
.rounded-image {
    /* border-radius: 15px; */
    /* Adjust the value as needed */
    /* box-shadow: 0 0 10px rgb(255, 78, 110); */
    /* Adjust the RGB values and opacity as needed */
    padding: 10px;
    /* Optional: Add padding to create space between the image and the background */
}

/* General Layout */
@media (min-width: 992px) {
    .sections-container {
        max-width: 100%;
        margin-top: -400px;

        h2,
        .agit {
            background-color: rgba(0, 0, 0, 0.47);
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
        }
    }
}

@media (max-width: 991px) {
    .sections-container {
        margin-top: -100px;
        max-width: 100%;

        h2,
        .agit {
            background-color: rgba(0, 0, 0, 0.7);
            backdrop-filter: blur(5px);
            -webkit-backdrop-filter: blur(5px);
        }
    }
}


/* Adjust the value as needed to create the desired overlap */
.horizontal-scroll {
    display: flex;
    overflow-x: auto;
    gap: 20px;
    /* Adjust the gap between cards */
}

.feature-card {
    flex: 0 0 auto;
    /* Prevent cards from shrinking */
    width: 300px;
    /* Adjust card width */
    /* Add more styling for the card */
    background-color: rgba(21, 10, 25, 0.853) !important;
        backdrop-filter: blur(10px) !important;
        -webkit-backdrop-filter: blur(10px) !important;
        border: 1px solid;
            border-image: linear-gradient(45deg, rgba(10, 10, 10, 0.6), rgb(221, 197, 255), rgb(0, 0, 0), rgba(255, 20, 188, 0.8), rgba(205, 155, 255, 0.7)) 1 !important;
}

.fixed-bottom {
    left: 0;
    right: 0;
    z-index: 1030;
    /* Adjust z-index as needed */
}

/* Modal Tray Animation */
.modal.bottom-tray {
    transform: translateY(100%);
    /* Initial state off-screen */
    transition: transform 0.3s ease-out;
    /* Smooth slide up */
}

.modal.bottom-tray.show {
    transform: translateY(0);
    /* Slide into view */
}

/* Modal Tray Styling */
.modal.bottom-tray,
.modal.bottom-tray .modal-dialog {
    display: flex;
    align-items: flex-end;
    width: 100%;
    background-color: #00000000;
}
#contactModal .modal-content {
    margin-bottom: 0;
}

.modal.bottom-tray .modal-dialog {
    position: fixed;
    margin: 0;
    width: 100%;
    height: auto;
    bottom: 0;
    right: 0;
}

.modal.bottom-tray .modal-content {
    border: 0;
    width: 100%;
    /* border: 5px groove;
    border-image: linear-gradient(45deg, rgba(193, 13, 253, 0.6), rgba(110, 7, 255, 1), rgba(120, 15, 255, 0.9), rgba(130, 20, 255, 0.8), rgba(140, 25, 255, 0.7)) 1;
    border-radius: 0.5rem 0.5rem 0 0; */
    /* Rounded top corners */
    bottom: 0;
}

.modal-content.dark-mode {
    background-color: #33333317;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px); /* Add this line for mobile support */
    color: white;
    /* Ensures text inside the modal is white for readability */
}

.bottom-tray .modal-body {
    max-height: 80vh;
    overflow-y: auto;
    /* Scrollable content */
}
.iti__country {
    color: black !important;
}

@keyframes gradient-shift {

    0%,
    100% {
        background-image: linear-gradient(45deg, rgba(193, 13, 253, 0.6), rgba(110, 7, 255, 1), rgba(120, 15, 255, 0.9), rgba(130, 20, 255, 0.8), rgba(140, 25, 255, 0.7));
    }

    10% {
        background-image: linear-gradient(45deg, rgba(193, 13, 253, 0.7), rgba(110, 7, 255, 0.9), rgba(120, 15, 255, 0.8), rgba(130, 20, 255, 0.7), rgba(140, 25, 255, 0.6));
    }

    20% {
        background-image: linear-gradient(45deg, rgba(193, 13, 253, 0.8), rgba(110, 7, 255, 0.8), rgba(120, 15, 255, 0.7), rgba(130, 20, 255, 0.6), rgba(140, 25, 255, 0.5));
    }

    30% {
        background-image: linear-gradient(45deg, rgba(193, 13, 253, 0.9), rgba(110, 7, 255, 0.7), rgba(120, 15, 255, 0.6), rgba(130, 20, 255, 0.5), rgba(140, 25, 255, 0.4));
    }

    40% {
        background-image: linear-gradient(45deg, rgba(193, 13, 253, 1), rgba(110, 7, 255, 0.6), rgba(120, 15, 255, 0.5), rgba(130, 20, 255, 0.4), rgba(140, 25, 255, 0.3));
    }

    50% {
        background-image: linear-gradient(45deg, rgba(140, 25, 255, 0.3), rgba(130, 20, 255, 0.4), rgba(120, 15, 255, 0.5), rgba(110, 7, 255, 0.6), rgba(193, 13, 253, 1));
    }

    60% {
        background-image: linear-gradient(45deg, rgba(140, 25, 255, 0.4), rgba(130, 20, 255, 0.5), rgba(120, 15, 255, 0.6), rgba(110, 7, 255, 0.7), rgba(193, 13, 253, 0.9));
    }

    70% {
        background-image: linear-gradient(45deg, rgba(140, 25, 255, 0.5), rgba(130, 20, 255, 0.6), rgba(120, 15, 255, 0.7), rgba(110, 7, 255, 0.8), rgba(193, 13, 253, 0.8));
    }

    80% {
        background-image: linear-gradient(45deg, rgba(140, 25, 255, 0.6), rgba(130, 20, 255, 0.7), rgba(120, 15, 255, 0.8), rgba(110, 7, 255, 0.9), rgba(193, 13, 253, 0.7));
    }

    90% {
        background-image: linear-gradient(45deg, rgba(140, 25, 255, 0.7), rgba(130, 20, 255, 0.8), rgba(120, 15, 255, 0.9), rgba(110, 7, 255, 1), rgba(193, 13, 253, 0.6));
    }
}

@keyframes float-effect {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}
.try-it-now-btn {

    padding: 0;
    font-size: 1rem;
    border-radius: 1rem;
    color: black;
    height: 50px;
    background-color: rgba(193, 13, 253, 0.1);
        /* Initial semi-transparent background */
        -webkit-backdrop-filter: blur(10px);
        backdrop-filter: blur(10px);
        /* Blur effect */
    border: 0;
    box-shadow: 0 0px 18px 0 rgba(193, 13, 253, 1.3);
    text-shadow: 0 0 15px rgb(255, 255, 255);
    font-weight: bold;
    animation: gradient-shift 1s cubic-bezier(0.215, 0.610, 0.355, 1) infinite, float-effect 6s ease-in-out infinite;

}


    /* Hero Section Styles */
    #heroSection {
        display: flex;
        justify-content: center;
        align-items: center;
        max-width: 100%;
        /* background-color: black; */
        color: white;
    }
    
    #heroSection .row {
        padding: 5rem 0;
        /* Adjusted from 'py-5' to a more CSS-standard notation */
    }
    
    #heroSection .col-md-6.text-center.text-md-left {
        text-align: center;
        /* For mobile */
    }
    
    #heroSection .col-md-6.text-center {
        text-align: center;
    }
    
    #heroSection .hero-message {
        font-size: 1.4rem;
        font-weight: bold;
        color: rgba(153, 247, 255, 0.618);
        animation: rgb-glow 17s infinite linear, gradient-animation 5s ease infinite;
            background: linear-gradient(-45deg, #ee7752, #e73c7e, #23a6d5, #23d5ab);
            background-size: 200% 400%;
            background-clip: text;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }
        
        @keyframes gradient-animation {
        
            0%,
            100% {
                background-position: 0% 50%;
            }
        
            50% {
                background-position: 100% 50%;
            }
    }
    
    @keyframes rgb-glow {
        0% {
            text-shadow: 0 0 22px rgba(255, 255, 0, 0.7);
        }
    
        /* Bright Yellow */
        20% {
            text-shadow: 2px 2px 14px rgba(0, 255, 255, 0.7);
        }
    
        /* Bright Cyan */
        40% {
            text-shadow: -2px -2px 16px rgba(255, 0, 255, 0.7);
        }
    
        /* Bright Magenta */
        60% {
            text-shadow: 2px -2px 18px rgba(0, 255, 0, 0.7);
        }
    
        /* Bright Green */
        80% {
            text-shadow: -2px 2px 20px rgba(0, 0, 255, 0.7);
        }
    
        /* Bright Blue */
        100% {
            text-shadow: 0 0 22px rgba(255, 255, 0, 0.7);
        }
    
        /* Back to Bright Yellow */
    }
#contactModal .modal-title {
    background: linear-gradient(45deg, rgb(255, 0, 0), rgb(255, 243, 0.89), rgb(9 9 8), rgba(107, 0, 255, 1), rgb(167 131 255));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
    animation: rgb-glow 15s infinite linear;

}

#contactModal .modal-footer .btn-primary {
    background-color: black;
    color: white;
    border-color: white;
}
#contactModal .modal-footer .btn-link {
    color: rgb(110, 154, 119);
}

.modal-footer .btn-secondary {
    /* Increased opacity for more visibility */
    background-color: rgba(128, 128, 128, 0.5);
    /* Gray color with added transparency */
    color: rgb(255, 255, 255);
    /* White text color with added transparency */
    border: none;
    /* No border */
}

#contactModal .modal-footer {
    border-top-width: 0px;

}
    #heroSection .sub-head {
        font-size: 1.2rem;
        /* Example size, adjust as needed */
    }
    
    #heroSection img.img-fluid {
        margin-bottom: 1rem;
        /* Adjust as needed */
    }
    
    /* Adjustments for responsiveness */
    @media (min-width: 768px) {
        #heroSection .col-md-6.text-center.text-md-left {
            text-align: left;
            /* Align text to the left on medium devices and up */
        width: 100%;
        }
    }
    
    #navbarNavAltMarkup {
        position: sticky;
        top: 0;
        z-index: 1020;
        /* Ensure it's above other content */
}

/* pricing pg */
.pricing-section {
    padding: 60px 0;
    background-color: #00000000 !important;
}

.pricing-section .container {
    max-width: 100%;
    margin: 0 auto;
}

.pricing-section h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    background: linear-gradient(to right, #4a5255, #ffffff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
        animation: rgb-glow 15s infinite linear;
}

.pricing-section p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    color: white;
}

.pricing-cards {
    display: flex;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.pricing-card {
    flex: 0 0 75%;
    margin-right: 25px;
    margin-bottom: 7px;
    box-shadow: 0 0 12px 0 rgb(170, 0, 255), 0 0 12px 0 rgba(1, 225, 255, 0.622);
    transition: transform 0.3s;
    border-radius: 20px !important;
    background-color: #00000023 !important;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);

}

@media (min-width: 768px) {
    .pricing-cards {
        display: flex;
        overflow-x: visible;
        width: 100%;
    }

    .pricing-card {
        flex: 0 0 auto;
        padding: 20px;
        border: 1px solid;
            border-color: rgb(255, 255, 255) !important;
        
        }
        
        .pricing-card .card-body {
            border: 1px solid;
            border-color: rgb(255, 255, 255) !important;
    }
}

.pricing-card:hover {
    transform: translateY(-10px);
}

.pricing-card .card-header {
    background-color: #141ba700;
    color: white;
    border-bottom: none;
    border-radius: inherit !important;
    
    text-align: center;
}

.pricing-card .card-header h2 {
    font-size: 2rem;
    margin-bottom: 10px;
    color: white;
}

.pricing-card:hover .card-header {
    background: linear-gradient(45deg, rgba(13, 189, 253, 0.6), rgba(110, 7, 255, 1), rgba(120, 15, 255, 0.9), rgba(130, 20, 255, 0.348), rgba(140, 25, 255, 0.7));
    color: rgba(0, 0, 0, 0.544);
    border-radius: inherit !important;
    border-color: rgb(35, 23, 23) !important;
    transition: background 0.5s ease-in-out, color 0.5s ease-in-out, border-color 0.5s ease-in-out, transform 0.5s ease-in-out;
    animation: hover-animation 1s infinite alternate;
}

.pricing-card .card-body {
    padding: 30px;
    text-align: center;
    color: white;
    background-color: #00000000;
    border-radius: 20px !important;
    /* background-color: #00000037 !important; */
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
    
        @media (max-width: 767px) {
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
        }
}

.pricing-card h2 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.pricing-card p#basicDiscount, .pricing-card p#fullDiscount {
    color: rgb(255, 177, 203);
    text-shadow: 0 0 5px rgb(255, 20, 147), 0 0 10px rgb(255, 105, 180), 0 0 15px rgb(255, 182, 193), 0 0 20px rgb(255, 192, 203);
}


.pricing-card p {
    font-size: 1rem;
    margin-bottom: 20px;
}
.pricing-card ul li.highlight {
    background: linear-gradient(45deg, rgb(13, 189, 253), rgb(140, 25, 255), rgb(253, 173, 13), rgb(255, 255, 255));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.pricing-card .money-back-guarantee {
    color: rgb(0, 208, 255);
    text-shadow: 0 0 5px rgb(36, 80, 36), 0 0 10px rgb(39, 87, 39), 0 0 15px rgb(57, 125, 57), 0 0 20px rgb(59, 130, 59);
}



.pricing-card ul {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
    text-align: left;
    }
    
    .info-icon {
        color: rgba(255, 255, 255, 0.7);
        /* White with 70% opacity */
    }

    .info-icon:hover {
        color: rgba(255, 255, 255, 1);
        /* Full white on hover */
    }

.pricing-card ul li {
    font-size: .85rem;
    margin-bottom: 10px;
}

@media (max-width: 767px) {
    .pricing-card ul li {
        font-size: .65rem;
    }
}

.pricing-card .btn {
    font-size: 1rem;
    padding: 10px 20px;
    background-color: black;
    color: white;
    border-color: white;
}

.pricing-card .btn:hover {
    background-color: white;
    color: black;
    border-color: black;
}

.notification-popup {
    display: none;
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    padding: 10px 20px;
    background-color: #4CAF50;
    color: white;
    border-radius: 5px;
    z-index: 9999;
    opacity: 0;
    transition: opacity 0.3s ease-in-out, transform 0.3s ease-in-out;
}

.notification-popup.show {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

.close-notification {
    background: none;
    border: none;
    color: white;
    font-size: 1.2em;
    cursor: pointer;
    padding: 0 0 0 10px;
}

@media (max-width: 768px) {
    .notification-popup {
        width: 90%;
        max-width: none;
    }
}

.notification-popup i {
    margin-right: 10px;
    color: #ffffff;
}

.chat-component {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 300px;
    color: black;
    background-color: rgba(0, 100, 100, 0.794);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border: 1px solid #ddd;
    border-radius: 10px;
    box-shadow: 0 0 10px rgb(0, 166, 255);
    transition: all 0.3s ease-in-out;
    z-index: 1000;
    max-height: 80vh;
    overflow-y: auto;
}

.chat-component.collapsed {
    height: 40px;
    overflow: hidden;
}

.chat-component:not(.collapsed) {
    height: auto;
}

.chat-component .card {
    border: none;
    background-color: transparent;
    color: white;
}

.chat-content {
    display: flex;
    flex-direction: column;
    height: calc(100% - 40px);
}

.chat-content.hidden {
    display: none;
}

@media (max-width: 475px) {
    .chat-component {
        width: 100%;
        left: 0;
        right: 0;
        bottom: 0;
        border-radius: 10px 10px 0 0;
    }
}

.chat-component .chat-input input {
    border-radius: 20px !important;
    padding: 10px 15px !important;
    border: 1px solid #4c00ff !important;
    width: 75% !important; 
    outline: none;
    transition: border-color 0.3s ease;
}

.chat-component .chat-input input:focus {
    border-color: #776bff;
    box-shadow: 0 0 5px rgba(119, 107, 255, 0.5);
}


.chat-component .chat-input-features button,
.chat-component .send-button button {
    border-radius: 50%;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: transparent;
    border: none !important;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.chat-component .chat-input-features button:hover,
.chat-component .send-button button:hover {
    background-color: rgba(255, 255, 255, 0.1) !important;
}

.send-button button {
    background-color: rgba(138, 208, 255, 0.729) !important;
}
.chat-component .chat-header,
.chat-component .chat-intro {
    cursor: pointer;
    padding: 10px;
    background-color: #f8f9fa;
    color: #5a5a5a;
}
#chatWidgetContainer {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 300px;
    z-index: 1000;
}

@keyframes slideDown {
    from { max-height: 0; }
    to { max-height: 500px; }
}

@keyframes slideUp {
    from { max-height: 500px; }
    to { max-height: 0; }
}

.chat-content:not(.hidden) {
    animation: slideDown 0.3s ease-in-out;
}

.chat-content.hidden {
    animation: slideUp 0.3s ease-in-out;
}
.btn-outline-primary {
    color: transparent !important;
    -webkit-background-clip: text;
    background-clip: text;
    text-shadow: 0 0 5px rgb(202, 145, 254);
    background-color: transparent;
    border-color: #776bff;
    font-size: 1.1em;
    background-image: linear-gradient(45deg, #feacfd93, #00ffee) !important;

}

.btn-outline-primary:hover,
.btn-outline-primary:focus,
.btn-outline-primary:active {
    color: #fff;
    background-color: #00eeff;
    border-color: #5d75ff;
}
