/* Custom Styles for About Page */
.custom-container {
    max-width: 1200px; /* or any custom width you prefer */
    margin: 0 auto; /* centers the container */
    padding-left: 15px;  /* optional, for slight padding on sides */
    padding-right: 15px; /* optional, for slight padding on sides */
}


.hero-section {
    background-image: url('{% static "images/hero-bg.jpg" %}');
    background-size: cover;
    background-position: center;
    color: white; /* Adjust text color as needed */
}

.icon-box {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.card {
    transition: transform 0.3s ease;
}

.card:hover {
    transform: translateY(-10px);
}

.btn-primary {
    background-color: #007bff;
    border: none;
    padding: 10px 20px;
    font-size: 1.1rem;
}

.btn-primary:hover {
    background-color: #0056b3;
}

.bg-light {
    background-color: #f8f9fa !important;
}
/* Breadcrumb Styles */
.breadcrumb {
    background-color: transparent;
    padding: 0.5rem 0;
    margin-bottom: 0;
}

.breadcrumb-item a {
    color: #6c757d;
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb-item a:hover {
    color: #007bff;
}

.breadcrumb-item.active {
    color: #495057;
}

