.button-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.button-container button {
    color: white;
    border: none;
    padding: 10px 20px;
    margin: 5px;
    font-size: 1em;
    cursor: pointer;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.button-container button.chandigarh { background-color: #4CAF50; } /* Green */
.button-container button.panchkula { background-color: #2196F3; } /* Blue */
.button-container button.mohali { background-color: #FF9800; } /* Orange */
.button-container button.punjab { background-color: #edae51; } /* Purple */
.button-container button.haryana { background-color: #58a4e0; } /* Red */
.button-container button.himachal { background-color: #81eb85; } /* Yellow */

.button-container button:hover {
    opacity: 0.8;
}


.services-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center; /* Center the buttons horizontally */
    gap: 10px;
}

.service-button {
    padding: 10px 20px;
    border: none;
    background-color: #27bec2;
    color: white;
    font-size: 14px;
    font-weight: bold;
    text-transform: uppercase;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.service-button:hover {
    background-color: #c5dff0;
}