/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    font-family: 'Arial', sans-serif;
    color: white;
    line-height: 1.6;
    background: linear-gradient(-45deg, #2856a6, #b663a7, #2856a6, #b663a7);
    background-size: 400% 400%;
    animation: gradientBG 15s ease infinite;
}




/* Gradient Animation */
@keyframes gradientBG {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

/* Navbar */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    background-color: white;  /* Navbar is white */
    color: white;  /* Text color is blue */
}

.navbar-brand {
    display: flex;
    align-items: center;
}

.navbar-logo {
    width: 40px;
    height: 40px;
    margin-right: 10px;
}

.navbar-menu {
    list-style: none;
    display: flex;
    gap: 20px;
}

.navbar-menu li {
    display: inline;
}

.navbar-menu a {
    color: #2856a6;  /* Blue text for links */
    text-decoration: none;
    font-weight: bold;
}

.navbar-menu a:hover {
    color: #b663a7;  /* Hover color is purple */
}

/* Dashboard Styles */
.dashboard-container {
    background: linear-gradient(-45deg, #2856a6, #b663a7, #2856a6, #b663a7);
    background-size: 400% 400%;
    animation: gradientBG 15s ease infinite;
    text-align: center;
    padding: 40px 20px;
}


.dashboard-container h1 {
    color: white;
    margin-bottom: 20px;
}

.tools-section {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    padding: 20px;
}

.tool-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
    background-color: white;
    color: #2856a6;
    border-radius: 10px;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.tool-card:hover {
    transform: scale(1.05);
}

.react-icon {
    font-size: 60px;  /* Set icon size */
    margin-bottom: 10px;
}

.tool-card h2 {
    margin-top: 10px;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .tools-section {
        grid-template-columns: 1fr;
    }
}
