/* Style for muted and smaller labels */
.form-label{
    font-size: 0.875rem; /* Slightly smaller font size */
    color: #6c757d; /* Muted text color (Bootstrap's text-muted color) */
}

#hero-section {
    position: relative;
    text-align: center;
    padding: 125px 0; /* Optional: Add vertical padding */
    color: #ffffffe9; /* Ensure text color is black */
    background: url('../../img/frontend/hero-banner-1.jpg') no-repeat center center;
    background-size: cover;
}

#hero-section .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* Black overlay with 50% opacity */
    z-index: 1;
}



#hero-section .container-fluid {
    position: relative;
    z-index: 2; /* Ensure content is above the overlay */
}

body {
    background: linear-gradient(to bottom, #55b09691, #455ad06e); /* Adjust colors as needed */
    color: #333; /* Optional: Set text color for better contrast */
}

.list-group-item {
    transition: all 0.3s ease; /* Smooth transition for hover effects */
}

.list-group-item:hover {
    background-color: hsl(0, 0%, 100%); /* Light blue background */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Subtle shadow */
    transform: scale(1.02); /* Slightly enlarge the card */
    cursor: pointer; /* Change cursor to pointer */
}


/********** TEMPLATE MODEL 2 _ CATEGORIES **********/
.category-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 24px;
}
.category-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 16px;
    transition: box-shadow 0.2s;
}
.category-card:hover {
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}
.category-image img {
    width: 160px;
    height: 160px;
    object-fit: cover;
    border-radius: 6px;
    background: #f5f5f5;
}
.category-name {
    margin-top: 12px;
    font-size: 1.1em;
    color: #333;
    text-align: center;
}
@media (max-width: 1200px) {
    .category-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 900px) {
    .category-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
    .category-grid { grid-template-columns: 1fr; }
    .category-image img { width: 100px; height: 100px; }
}