:root {
    --background: #141417;
    --accent: #FD6263;
    --highlight: #889CE7;
    --text: #ffffff;
}

body {
    background-color: var(--background);
    color: var(--text);
    font-family: 'Inter', sans-serif;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

.navbar {
    background-color: rgba(20, 20, 23, 0.95);
    padding: 1rem 2rem;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.navbar-brand img {
    height: 40px;
}

.nav-link {
    color: var(--text) !important;
    margin: 0 1rem;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: var(--highlight) !important;
}

.btn-primary {
    background-color: var(--accent);
    border: none;
    padding: 0.5rem 1.5rem;
    border-radius: 4px;
    transition: transform 0.3s ease;
}

.btn-primary:hover {
    background-color: var(--accent);
    transform: translateY(-2px);
}

.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding: 6rem 2rem;
}

.wave-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.service-card {
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    padding: 2rem;
    margin: 1rem 0;
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
}

.chat-widget {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 1000;
}

.chat-button {
    background-color: var(--accent);
    border: none;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

footer {
    background-color: rgba(20, 20, 23, 0.98);
    padding: 4rem 0;
    margin-top: 4rem;
}
