html, body {
    margin: 0;
    padding: 0;
    background-color: #f5f5f5;
}
/* General Styles */
body {
    margin: 0;
    padding: 0;
    text-align: center;
}

/* Main Container */
.container {
    width: 90%;
    margin: 0 auto;
    padding-top: 20px;
}

/* Section Titles */
.section-title {
    font-size: 22px;
    font-weight: bold;
    margin-bottom: 20px;
    text-transform: uppercase;
    color: #f8a500;
}

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



/* Co-ordinators Section */
.coordinators {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 40px;
}

.person {
    text-align: center;
    width: 150px;
}

.person img {
    width: 160px;
    height: 160px;
    border-radius: 50%;
    border: 3px solid #fcbf49;
    margin-bottom: 10px;
}

.person h3 {
    font-size: 16px;
    margin: 5px 0;
}

.person p {
    font-size: 14px;
}

/* Committee Section */
.committee {
    display: flex;
    justify-content: center;
    text-align: left;
    gap: 40px;
    margin-bottom: 40px;
}

ul {
    list-style-type: none;
    padding: 0;
}

.person img{
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

.person img:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.list {
    margin-bottom: 10px;
    font-size: 14px;
    position: relative;
    padding-left: 25px;
}

.list::before {
    color: #fcbf49;
    position: absolute;
    left: 0;
    font-size: 16px;
    font-family: "Font Awesome 5 Free";
    content: "\f192"; /* Unicode for fa-dot-circle */
    font-weight: 900; 
}

/* Responsive Design */
@media (max-width: 600px) {
    .coordinators {
        flex-direction: column;
        align-items: center;
    }

    .committee {
        flex-direction: column;
        margin-bottom: 0;
        gap: 0;
    }

    .person {
        width: 100%;
    }

    .left-list{
        margin: auto;
        width: 50%;
    }
    .right-list{
        margin: 0 auto;
        margin-bottom: 40px;
        width: 50%;
    }
}

@media screen and (max-width:520px)
{
    .left-list{
        width: 60%;
    }
    .right-list{
        width: 60%;
    }
}

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