html, body {
    margin: 0;
    padding: 0;
    background-color: #f5f5f5;
}

.about-highlights {
    padding: 50px 10%;
    text-align: center;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

.highlight-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* 3 cards per row */
    gap: 20px;
    margin-top: 30px;
}

/* Card styles */
.highlight-card {
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.highlight-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 16px rgba(0,0,0,0.2);
}

.highlight-card i {
    font-size: 40px;
    color: #2c3e50;
    margin-bottom: 15px;
}

.highlight-card h3 {
    margin-bottom: 10px;
    font-size: 1.4rem;
    color: #333;
}

.highlight-card p {
    font-size: 1rem;
    color: #555;
}

/* Responsive Design */
@media (max-width: 992px) {
    .highlight-grid {
        grid-template-columns: repeat(2, 1fr); /* 2 cards per row for tablets */
    }
}

@media (max-width: 600px) {
    .highlight-grid {
        grid-template-columns: 1fr; /* 1 card per row for mobile */
    }
}

@media screen and (max-width:400px)
{
    .contact-bg{
        height: 50vh;
    }
}

@media screen and (max-width:1160px)
{
    .navbar ul li{
        display: inline-block;
        margin-top: 0;
        margin-left: 0;
    }
}

.topics-section {
    padding: 40px 0;
    padding-top: 0;
    /* background-color: #f9f9f9; */
}

.topics-section h2 {
    text-align: center;
    margin-bottom: 30px;
    color: #333;
    font-family: 'Times New Roman', Times, serif;
}

.topics-table {
    margin: 0 auto;
}

.mobile-table {
    display: none;
}

.desktop-table {
    width: 100%;
    border-collapse: collapse;
    background-color: white;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    overflow: hidden;
    table-layout: fixed;
}

.desktop-table td {
    width: 50%;
    padding: 15px 20px;
    border: 1px solid #eee;
    text-align: center;
    font-size: 16px;
    color: #444;
    transition: background-color 0.3s ease;
    word-wrap: break-word;
}

.desktop-table tr:nth-child(even) {
    background-color: #f8f9fa;
}

.desktop-table tr:hover td {
    background-color: #f0f0f0;
}

@media (max-width: 768px) {
    .desktop-table {
        display: none;
    }

    .mobile-table {
        display: table;
        width: 100%;
        border-collapse: collapse;
        background-color: white;
        box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
        border-radius: 10px;
        overflow: hidden;
    }

    .mobile-table td {
        padding: 12px 15px;
        border: 1px solid #eee;
        text-align: center;
        font-size: 14px;
        color: #444;
        transition: background-color 0.3s ease;
    }

    .mobile-table tr:nth-child(even) td {
        background-color: #f8f9fa;
    }

    .mobile-table tr:hover td {
        background-color: #f0f0f0;
    }

    .topics-section h2 {
        font-size: 20px;
        padding: 0 15px;
    }
}

@media (max-width: 480px) {
    .mobile-table td {
        padding: 10px;
        font-size: 13px;
    }
}

.topicscovered{
    
    padding-bottom: 20px;
}

.aboutpara{
    padding-top: 40px;
}