
/* Custom styles for brands.html - always sticky navbar */
.header_navbar.sticky {
    position: fixed;
    z-index: 99;
    background-color: #2B2B44;
    box-shadow: 0px 20px 50px 0px rgba(0, 0, 0, 0.05);
}

.header_navbar.sticky .navbar {
    padding: 15px 0;
}

/* Brand Cards Layout */
.brands_grid_wrapper {
    background-color: #fff;
    padding: 60px 0;
}

.brand_content p {
    font-size: 18px;
}

.highlight-cyan {
    color: #00b4d8;
}

#brands-header {
    background: linear-gradient(to bottom, #f8f9fa 0%, #e8f4f8 100%);
    padding-top: 120px;
    padding-bottom: 40px;
}

.brand_card {
    background-color: #fff;
    padding: 40px 30px;
    margin-bottom: 30px;
    text-align: center;
    height: 100%;
    display: flex;
    flex-direction: column;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.08);
    border-radius: 8px;
}

.brand_logo {
    margin-bottom: 20px;
    min-height: 75px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.brand_logo img {
    max-width: 200px;
    height: auto;
}

.brand_name {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 22px;
    color: #2B2B44;
    margin-bottom: 15px;
}

.brand_badge {
    display: inline-block;
    padding: 8px 20px;
    border-radius: 25px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 12px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: #fff;
    margin-bottom: 20px;
}

.badge-ledglow {
    background-color: #3498db;
}

.badge-glowshift {
    background-color: #e67e22;
}

.badge-maxtow {
    background-color: #c0392b;
}

.brand_founded {
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    color: #333;
    margin-bottom: 10px;
    text-align: left;
}

.brand_known {
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    color: #333;
    margin-bottom: 20px;
    text-align: left;
}

.brand_description {
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 25px;
    text-align: left;
    min-height: 145px;
}

.brand_description strong {
    font-weight: 700;
    color: #333;
}

.brand_highlights_title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 14px;
    color: #333;
    margin-bottom: 12px;
    text-align: left;
}

.brand_highlights {
    list-style: disc;
    padding-left: 20px;
    margin-bottom: 25px;
    text-align: left;
    flex-grow: 1;
}

.brand_highlights li {
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    color: #555;
    margin-bottom: 6px;
    line-height: 1.5;
}

.brand_btn {
    display: inline-block;
    padding: 14px 30px;
    border-radius: 5px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 15px;
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
    margin-top: auto;
}

.brand_btn i {
    margin-left: 8px;
}

.btn-ledglow {
    background-color: #3498db;
}

.btn-ledglow:hover {
    background-color: #2980b9;
    color: #fff;
}

.btn-glowshift {
    background-color: #e67e22;
}

.btn-glowshift:hover {
    background-color: #d35400;
    color: #fff;
}

.btn-maxtow {
    background-color: #c0392b;
}

.btn-maxtow:hover {
    background-color: #a93226;
    color: #fff;
}

.brands_wrapper_bottom {
    padding-bottom: 60px;
    background-color: #fff;
}

@media (max-width: 991px) {
    .brand_card {
        margin-bottom: 30px;
    }
}

@media (max-width: 767px) {
    .brand_card {
        padding: 30px 20px;
    }
    
    .brand_logo img {
        max-width: 180px;
    }
    
    .brand_name {
        font-size: 18px;
    }
    
    .brand_btn {
        padding: 12px 20px;
        font-size: 13px;
    }
    .brands_grid_wrapper {
        .col-lg-4 {
            padding-bottom: 20px;
        }
    }
}
.pb-60 {
    padding-bottom: 0px;
}

