/* public/css/styles.css */
.navbar {
    background: rgba(26, 26, 46, 0.9) !important;
    backdrop-filter: blur(10px);
    padding: 1rem 2rem;
}
.navbar-brand {
    display: flex;
    align-items: center;
    color: #FFFFFF !important;
    font-weight: 500;
    transition: color 0.3s ease;
}
.navbar-brand img {
    height: 40px;
    margin-right: 10px;
}
.nav-link {
    color: #FFFFFF !important;
    font-weight: 500;
    transition: color 0.3s ease;
}
.nav-link:hover {
    color: #00A3FF !important;
}
.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") !important;
}
body {
    background: #1A1A2E;
    color: #FFFFFF;
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
}
.container {
    padding: 4rem 0;
}
h2, h3 {
    color: #FFFFFF;
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    text-align: center;
}
.card {
    background: #2A2A4A;
    border: none;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2), 0 0 10px rgba(0, 163, 255, 0.2);
    padding: 2rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3), 0 0 15px rgba(0, 163, 255, 0.3);
}
.card-body {
    color: #FFFFFF !important; /* Ensure all text in card is white */
}
.card-body p, .card-body ul, .card-body ol, .card-body li {
    color: #FFFFFF !important; /* Explicitly set for paragraphs, lists */
}
.plan-details .price {
    font-size: 2rem;
    color: #00A3FF;
    font-weight: 700;
}
.plan-details .tokens {
    color: #7B68EE;
    font-size: 1.2rem;
}
.btn-primary {
    background: linear-gradient(135deg, #00A3FF, #7B68EE);
    border: none;
    border-radius: 25px;
    padding: 0.75rem 1.5rem;
    font-weight: 500;
}
.btn-primary:hover {
    transform: scale(1.05);
    box-shadow: 0 0 15px rgba(0, 163, 255, 0.5);
}
.faq-item h4 {
    color: #00A3FF;
    font-weight: 600;
}
.faq-item p {
    color: #FFFFFF !important; /* Ensure FAQ answers are white */
}
@media (max-width: 768px) {
    .container {
        padding: 2rem 1rem;
    }
    h2 {
        font-size: 1.8rem;
    }
    .card {
        padding: 1.5rem;
    }
    .navbar-brand img {
        height: 30px;
    }
}






footer {
    background: rgba(26, 26, 46, 0.9);
    padding: 2rem 0;
    margin-top: 2rem;
    text-align: center;
    color: #E0E0E0;
}
footer a {
    color: #00A3FF;
    text-decoration: none;
    margin: 0 1rem;
    font-weight: 500;
    transition: color 0.3s ease;
}
footer a:hover {
    color: #7B68EE;
}
@media (max-width: 768px) {
    footer {
        padding: 1.5rem 0;
    }
    footer a {
        margin: 0.5rem;
        display: inline-block;
    }
}