
/* Centering the logo above the navbar */
.logo-container {
    text-align: center;
    margin: 20px 0;
}

.logo-container img {
    max-width: 200px; /* Adjust this size according to your logo */
    height: auto;
}



footer {
    background-color: #1c2736;
    color: #fff;
    padding: 20px 0;
    text-align: center;
}

footer .footer-content {
    max-width: 1000px;
    margin: 0 auto;
}

footer p {
    margin: 10px 0;
    font-size: 14px;
}

footer a {
    color: #fff;
    text-decoration: none;
    margin: 0 10px;
}

footer a:hover {
    text-decoration: underline;
}

.social-icons a {
    display: inline-block;
    margin: 0 10px;
    font-size: 20px;
}

.social-icons a i {
    color: #fff;
}

.social-icons a:hover i {
    color: #f1c40f;
}

        .diamond-chart {
            width: 100%;
            max-width: 600px;
            margin: auto;
            border-collapse: collapse;
            background-color: #fff;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
            border-radius: 8px;
            overflow: hidden;
        }
        .diamond-chart th, .diamond-chart td {
            padding: 10px 15px;
            text-align: left;
            border-bottom: 1px solid #ddd;
        }
        .diamond-chart th {
            background-color: #007BFF;
            color: #fff;
        }
        .diamond-chart tr:last-child td {
            border-bottom: none;
        }
        .diamond-chart tr:hover {
            background-color: #f1f1f1;
        }
        .diamond-chart td:nth-child(2) {
            font-weight: bold;
            text-align: right;
        }






