
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');
body {
    font-family: 'Inter', sans-serif;
    background-color: #0F111A;
    color: #F8FAFC;
    scroll-behavior: smooth;
}

.glass-card {
    background: rgba(26, 31, 54, 0.6);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(14, 246, 204, 0.2);
}

.testimonial-card {
    background: linear-gradient(145deg, #1A1F36, #0F111A);
    box-shadow: 5px 5px 15px rgba(0,0,0,0.3);
}

.pricing-card:hover {
    transform: translateY(-10px);
    border-color: #7B61FF;
}

.feature-icon {
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
    transform: scale(1.2) rotate(5deg);
}

.custom-underline {
    position: relative;
}

    .custom-underline:after {
        content: '';
        position: absolute;
        width: 100%;
        height: 2px;
        bottom: -2px;
        left: 0;
        background: linear-gradient(90deg, #0EF6CC, #7B61FF);
        transform: scaleX(0);
        transition: transform 0.3s ease;
    }

    .custom-underline:hover:after {
        transform: scaleX(1);
    }

#toggleDarkMode {
    transition: all 0.3s ease;
}

    #toggleDarkMode:hover {
        transform: rotate(30deg);
    }

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.accordion.active .accordion-content {
    max-height: 300px;
}

.chat-message {
    opacity: 0;
    transform: translateY(10px);
    animation: fadeIn 0.3s forwards;
}

@keyframes fadeIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}


