/* Wrapper section */
section {
  /*padding: 40px 0;*/
  background: #fff;
}

.logo-grid-container {
    max-width: 1400px;
    margin: auto;
    background-color: #fff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 0 15px rgba(0,0,0,0.1);
}

.grid-title {
    text-align: center;
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 30px;
    color: #333;
}

.logo-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr); /* 6 logos per row */
    gap: 20px;
}

.logo-item {
    text-align: center;
    border: 1px solid #ddd;
    padding: 10px;
    background-color: #fafafa;
    border-radius: 8px;
    transition: transform 0.2s ease;
}

.logo-item:hover {
    transform: scale(1.03);
    box-shadow: 0 0 8px rgba(0,0,0,0.1);
}

.logo-item img {
    max-width: 100%;
    height: 120px; /* taller image */
    object-fit: contain;
}

.logo-name {
    margin-top: 10px;
    font-size: 14px;
    color: #444;
    font-weight: 500;
}


.list-heading {
    font-weight: 700; /* Bold */
    font-size: 18px;  /* Adjust size as needed */
    display: inline-block; /* Keeps it inline with the text */
    margin-right: 5px; /* Optional spacing after heading */
  color: black;
}