 /* Base Styles */
 :root {
    font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell,
        'Open Sans', 'Helvetica Neue', sans-serif;
    line-height: 1.5;
    font-weight: 400;
    color-scheme: light dark;
    color: rgba(0, 0, 0, 0.87);
    background-color: #ffffff;
    font-synthesis: none;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    scroll-behavior: smooth;
}

.sub-heading {
    color: #8a8e93;
}

body {
    margin: 0;
    min-width: 320px;
    min-height: 100vh;
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes slideIn {
    from {
        transform: translateY(30px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.animate-fadeIn {
    animation: fadeIn 1s ease-out;
}

.animate-slideIn {
    animation: slideIn 1s ease-out;
}

/* Rating Stars */
.rating-stars {
    color: #FFD700;
}

input,
textarea,
select {
    background: white;
    color: black;
}

input,
textarea,
select {
    background: white;
    color: black;
}

.whatsapp-button {
    position: fixed;
    bottom: 25px;
    right: 25px;
    z-index: 1000;
    display: flex;
    align-items: center;
     background-color: #25D366; 
    /*background-color: green;*/
    padding: 12px 20px;
    border-radius: 50px;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.3);
    transition: all 0.3s ease-in-out;
    animation: pulse 2s infinite;
    border: 2px solid transparent;
}

.whatsapp-button:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.4);
    border-color: rgba(255, 255, 255, 0.6);
}

.whatsapp-text {
    color: white;
    font-weight: 600;
    margin-left: 12px;
    font-size: 16px;
    white-space: nowrap;
}

.whatsapp-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    padding: 8px;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
        box-shadow: 0 0 15px rgba(37, 211, 102, 0.5);
    }

    100% {
        transform: scale(1);
    }
}

@media (max-width: 640px) {
    .whatsapp-button {
        padding: 12px;
        border-radius: 50%;
    }

    .whatsapp-text {
        display: none;
    }

    .whatsapp-icon {
        width: 44px;
        height: 44px;
    }
}

.js-cookie-consent.cookie-consent.alert.alert-dismissible.fade.show {
    display: none;
}

.sub-heading {
    color: #8a8e93;
}