body {
    font-family: 'Inter', sans-serif;
    background-color: #1a202c; /* Dark background */
    color: #f7f8fa; /* Light text */
    line-height: 1.6;
}
.container {
    max-width: 1200px;
}
.text-gradient {
    background-image: linear-gradient(to right, #6EE7B7, #3B82F6);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}
.card {
    background-color: #2d3748;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.2);
}

/* Override Bootstrap primary button color */
.btn-primary {
      background-color: #4a7dbf; /* Your custom color */
}

.text-secondary {
    color: #eaecf2 !important; /* Lighter secondary text */
}
