/* ============================================
   TRIDENT BEARINGS - Professional B2B Landing Page
   Modern, Responsive Design
   ============================================ */
   
/* WhatsApp Button & Bubble Styling */
.whatsapp-fixed {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 12px;
}

.whatsapp-text-bubble {
    background-color: white;
    color: #1a202c;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    opacity: 0;
    transform: translateX(20px);
    transition: all 0.3s ease;
    white-space: nowrap;
    border: 1px solid #e2e8f0;
}

/* Show bubble on hover and by default after page loads slightly */
.whatsapp-fixed:hover .whatsapp-text-bubble {
    opacity: 1;
    transform: translateX(0);
}

.whatsapp-icon-wrapper {
    background-color: #25D366;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.whatsapp-fixed:hover .whatsapp-icon-wrapper {
    transform: scale(1.1);
}

/* Mobile Adjustments */
@media (max-width: 480px) {
    .whatsapp-fixed {
        bottom: 20px;
        right: 20px;
    }
    .whatsapp-text-bubble {
        display: none; /* Hide text on very small screens to save space */
    }
    .whatsapp-icon-wrapper {
        width: 55px;
        height: 55px;
    }
}

/* CSS Variables for Color Scheme */
:root {
    --primary-blue: #1e3a5f;
    --dark-blue: #0f1f35;
    --steel-gray: #4a5568;
    --light-gray: #e2e8f0;
    --white: #ffffff;
    --accent-red: #dc2626;
    --accent-orange: #f97316;
    --text-dark: #1a202c;
    --text-light: #718096;
    --shadow: rgba(0, 0, 0, 0.1);
    --shadow-lg: rgba(0, 0, 0, 0.15);
    --bg-golden: #f0da91;
    --bg-golden-light: #f5e5b8;
    --bg-golden-dark: #e6c86f;
}

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-golden);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ============================================
   HEADER / NAVBAR
   ============================================ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    transition: all 0.5s ease;
}

.navbar.scrolled {
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.15);
    background-color: rgba(255, 255, 255, 0.98);
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.logo img {
    height: 60px;
    width: auto;
    object-fit: contain;
    max-width: 200px;
}

.nav-menu {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-link {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    font-size: 15px;
    transition: color 0.5s ease;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent-red);
    transition: width 0.5s ease;
}

.nav-link:hover {
    color: var(--accent-red);
}

.nav-link:hover::after {
    width: 100%;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--primary-blue);
    transition: all 0.5s ease;
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--dark-blue) 100%);
    color: var(--white);
    text-align: center;
    padding-top: 80px;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M 100 0 L 0 0 0 100" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
    padding: 40px 20px;
    animation: fadeInUp 1s ease;
}

.hero-logo {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 30px;
    animation: fadeInUp 1s ease 0.2s both;
}

.hero-logo img {
    max-width: 500px;
    width: 100%;
    height: auto;
    filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.3));
}

.hero-title {
    font-size: 4.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 30px;
    color: var(--accent-orange);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.hero-text {
    font-size: 1.2rem;
    margin-bottom: 40px;
    line-height: 1.8;
    opacity: 0.95;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
    display: inline-block;
    padding: 15px 35px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    border-radius: 5px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    text-align: center;
}

.btn-primary {
    background-color: var(--accent-red);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(220, 38, 38, 0.3);
}

.btn-primary:hover {
    background-color: #b91c1c;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(220, 38, 38, 0.4);
}

.btn-secondary {
    background-color: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-secondary:hover {
    background-color: var(--white);
    color: var(--primary-blue);
    transform: translateY(-2px);
}

/* ============================================
   SECTIONS
   ============================================ */
.section {
    padding: 80px 0;
}

.section-dark {
    background-color: var(--bg-golden-light);
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 15px;
    color: var(--primary-blue);
    position: relative;
    padding-bottom: 20px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: var(--accent-red);
}

.section-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 50px;
}

/* ============================================
   ABOUT SECTION
   ============================================ */
.about-content {
    max-width: 1000px;
    margin: 0 auto;
}

.about-text {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 40px;
    text-align: center;
}

.about-text p {
    margin-bottom: 20px;
}

.expertise-grid {
    margin-top: 40px;
}

.expertise-item {
    background-color: var(--white);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.12);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.expertise-item h3 {
    color: var(--primary-blue);
    font-size: 1.5rem;
    margin-bottom: 20px;
    text-align: center;
}

.expertise-list {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
}

.expertise-list li {
    padding: 12px 15px;
    background-color: var(--white);
    border-left: 4px solid var(--accent-red);
    border-radius: 5px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.08);
}

.expertise-list li:hover {
    transform: translateX(5px);
    box-shadow: 0 2px 8px var(--shadow);
}

/* ============================================
   BRANDS SECTION
   ============================================ */
.brands-content {
    max-width: 1100px;
    margin: 0 auto;
}

.brand-category {
    margin-bottom: 50px;
}

.brand-category-title {
    font-size: 1.8rem;
    color: var(--primary-blue);
    margin-bottom: 25px;
    text-align: center;
    font-weight: 600;
}

.brand-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
}

.brand-item {
    background-color: var(--white);
    padding: 25px 20px;
    text-align: center;
    border-radius: 8px;
    font-weight: 600;
    color: var(--steel-gray);
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.12);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.brand-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px var(--shadow-lg);
    border-color: var(--accent-red);
    color: var(--primary-blue);
}

.brand-note {
    margin-top: 40px;
    padding: 20px;
    background-color: var(--white);
    border-radius: 8px;
    text-align: center;
    border-left: 4px solid var(--accent-orange);
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.1);
}

.brand-note p {
    font-size: 1.05rem;
    color: var(--text-dark);
}

/* ============================================
   PRODUCTS SECTION
   ============================================ */
.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: auto;
    gap: 30px;
    margin-top: 50px;
}

/* All cards have the same width - each spans 1 column */
.products-grid .product-card {
    grid-column: span 1;
}

/* First row: 3 products (row 1) */
.products-grid .product-card:nth-child(1) {
    grid-row: 1;
    grid-column: 1 / 2;
}

.products-grid .product-card:nth-child(2) {
    grid-row: 1;
    grid-column: 2 / 3;
}

.products-grid .product-card:nth-child(3) {
    grid-row: 1;
    grid-column: 3 / 4;
}

/* Second row: 3 products (row 2) */
.products-grid .product-card:nth-child(4) {
    grid-row: 2;
    grid-column: 1 / 2;
}

.products-grid .product-card:nth-child(5) {
    grid-row: 2;
    grid-column: 2 / 3;
}

.products-grid .product-card:nth-child(6) {
    grid-row: 2;
    grid-column: 3 / 4;
}

/* Third row: 1 product centered (row 3) */
.products-grid .product-card:nth-child(7) {
    grid-row: 3;
    grid-column: 2 / 3;
}

.product-card {
    background-color: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.12);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(0, 0, 0, 0.05);
    width: 100%;
    min-height: 100%;
    min-width: 0;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 25px var(--shadow-lg);
}

.product-image {
    width: 100%;
    height: 220px;
    overflow: hidden;
    background-color: var(--bg-golden-light);
    flex-shrink: 0;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
    display: block;
}

.product-card:hover .product-image img {
    transform: scale(1.1);
}

.product-content {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    min-height: 0;
}

.product-title {
    font-size: 1.4rem;
    color: var(--primary-blue);
    margin-bottom: 12px;
    font-weight: 600;
}

.product-description {
    color: var(--text-light);
    margin-bottom: 15px;
    line-height: 1.6;
    flex-grow: 1;
}

.product-applications {
    font-size: 0.9rem;
    color: var(--steel-gray);
    padding-top: 15px;
    border-top: 1px solid var(--light-gray);
}

/* ============================================
   INDUSTRIES SECTION
   ============================================ */
.industries-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 25px;
    margin-top: 50px;
}

.industry-item {
    background-color: var(--white);
    padding: 30px 20px;
    text-align: center;
    border-radius: 10px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.12);
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.industry-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px var(--shadow-lg);
}

.industry-icon {
    font-size: 3rem;
    margin-bottom: 15px;
}

.industry-item h3 {
    color: var(--primary-blue);
    font-size: 1.1rem;
    font-weight: 600;
}

/* ============================================
   CONTACT SECTION
   ============================================ */
.contact-wrapper {
    display: flex;
    justify-content: center;
    margin-top: 50px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.contact-info {
    background-color: var(--primary-blue);
    color: var(--white);
    padding: 50px 40px;
    border-radius: 15px;
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.15);
    width: 100%;
}

.contact-info h3 {
    font-size: 2rem;
    margin-bottom: 35px;
    color: var(--accent-orange);
    text-align: center;
    font-weight: 700;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 20px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.contact-item:hover {
    background-color: rgba(255, 255, 255, 0.15);
    transform: translateX(5px);
}

.contact-icon {
    font-size: 2rem;
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
}

.contact-text {
    flex: 1;
}

.contact-text strong {
    display: block;
    font-size: 1rem;
    margin-bottom: 8px;
    color: var(--accent-orange);
    font-weight: 600;
}

.contact-text p {
    margin: 0;
    line-height: 1.6;
    font-size: 1rem;
}

.contact-details a {
    color: var(--white);
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: border-color 0.3s ease;
}

.contact-details a:hover {
    border-bottom-color: var(--white);
    color: var(--accent-orange);
}


/* ============================================
   FOOTER
   ============================================ */
.footer {
    background-color: var(--dark-blue);
    color: var(--white);
    padding: 50px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 30px;
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: 20px;
    color: var(--accent-orange);
}

.footer-section p {
    line-height: 1.8;
    opacity: 0.9;
    margin-bottom: 10px;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: var(--white);
    text-decoration: none;
    opacity: 0.9;
    transition: opacity 0.3s ease, padding-left 0.3s ease;
    display: inline-block;
}

.footer-links a:hover {
    opacity: 1;
    padding-left: 5px;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0.8;
}

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: fadeInUp 0.6s ease;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
@media (max-width: 1200px) {
    .products-grid {
        gap: 25px;
    }
}

@media (max-width: 968px) {
    .hero-logo img {
        max-width: 400px;
    }
    
    .hero-title {
        font-size: 3.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.5rem;
    }
    
    .contact-info {
        padding: 40px 30px;
    }
    
    .contact-info h3 {
        font-size: 1.8rem;
    }
    
    .contact-item {
        padding: 18px;
        gap: 15px;
    }
    
    .contact-icon {
        width: 45px;
        height: 45px;
        font-size: 1.8rem;
    }
    
    .products-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
    
    /* Tablet: Maintain 3-3-1 pattern */
    .products-grid .product-card {
        grid-column: span 1;
    }
    
    /* First row: 3 products */
    .products-grid .product-card:nth-child(1) {
        grid-row: 1;
        grid-column: 1 / 2;
    }
    
    .products-grid .product-card:nth-child(2) {
        grid-row: 1;
        grid-column: 2 / 3;
    }
    
    .products-grid .product-card:nth-child(3) {
        grid-row: 1;
        grid-column: 3 / 4;
    }
    
    /* Second row: 3 products */
    .products-grid .product-card:nth-child(4) {
        grid-row: 2;
        grid-column: 1 / 2;
    }
    
    .products-grid .product-card:nth-child(5) {
        grid-row: 2;
        grid-column: 2 / 3;
    }
    
    .products-grid .product-card:nth-child(6) {
        grid-row: 2;
        grid-column: 3 / 4;
    }
    
    /* Third row: 1 product centered */
    .products-grid .product-card:nth-child(7) {
        grid-row: 3;
        grid-column: 2 / 3;
    }
    
    .product-image {
        height: 200px;
    }
    
    .product-content {
        padding: 20px;
    }
    
    .product-title {
        font-size: 1.3rem;
    }
}

@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        background-color: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(10px);
        flex-direction: column;
        padding: 30px 20px;
        box-shadow: 0 4px 25px rgba(0, 0, 0, 0.15);
        transition: left 0.5s ease;
        gap: 20px;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .hero-logo {
        margin-bottom: 25px;
    }
    
    .hero-logo img {
        max-width: 320px;
    }
    
    .hero-text {
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .section {
        padding: 60px 0;
    }
    
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    /* Mobile: 2 columns layout */
    .products-grid .product-card {
        grid-column: span 1;
    }
    
    /* Reset positioning for 2-column layout */
    .products-grid .product-card:nth-child(1) {
        grid-row: auto;
        grid-column: 1 / 2;
    }
    
    .products-grid .product-card:nth-child(2) {
        grid-row: auto;
        grid-column: 2 / 3;
    }
    
    .products-grid .product-card:nth-child(3) {
        grid-row: auto;
        grid-column: 1 / 2;
    }
    
    .products-grid .product-card:nth-child(4) {
        grid-row: auto;
        grid-column: 2 / 3;
    }
    
    .products-grid .product-card:nth-child(5) {
        grid-row: auto;
        grid-column: 1 / 2;
    }
    
    .products-grid .product-card:nth-child(6) {
        grid-row: auto;
        grid-column: 2 / 3;
    }
    
    .products-grid .product-card:nth-child(7) {
        grid-row: auto;
        grid-column: 1 / 3;
    }
    
    .product-image {
        height: 220px;
    }
    
    .product-content {
        padding: 15px;
    }
    
    .product-title {
        font-size: 1.2rem;
    }
    
    .product-description {
        font-size: 0.95rem;
    }
    
    .industries-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    }
    
    .expertise-list {
        grid-template-columns: 1fr;
    }
    
    .brand-grid {
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    }
}

@media (max-width: 600px) {
    .container {
        padding: 0 15px;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        margin-top: 40px;
    }
    
    /* Single column layout for small screens */
    .products-grid .product-card:nth-child(n) {
        grid-column: 1 / -1;
        grid-row: auto;
    }
    
    .product-card {
        margin: 0;
    }
    
    .product-image {
        height: 280px;
    }
    
    .product-content {
        padding: 15px;
    }
    
    .product-title {
        font-size: 1.1rem;
        margin-bottom: 10px;
    }
    
    .product-description {
        font-size: 0.9rem;
        margin-bottom: 12px;
    }
    
    .product-applications {
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .hero-logo {
        margin-bottom: 20px;
    }
    
    .hero-logo img {
        max-width: 250px;
    }
    
    .hero-title {
        font-size: 2rem;
        letter-spacing: 1px;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .btn {
        width: 100%;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .contact-info {
        padding: 35px 25px;
    }
    
    .contact-info h3 {
        font-size: 1.6rem;
        margin-bottom: 25px;
    }
    
    .contact-item {
        padding: 15px;
        gap: 12px;
    }
    
    .contact-icon {
        width: 40px;
        height: 40px;
        font-size: 1.5rem;
    }
    
    .contact-text strong {
        font-size: 0.95rem;
    }
    
    .contact-text p {
        font-size: 0.9rem;
    }
    
    .container {
        padding: 0 12px;
    }
    
    .products-grid {
        gap: 30px;
        margin-top: 35px;
    }
    
    .product-card {
        margin: 0;
    }
    
    .product-image {
        height: 320px;
    }
    
    .product-content {
        padding: 15px;
    }
    
    .product-title {
        font-size: 1rem;
        margin-bottom: 8px;
    }
    
    .product-description {
        font-size: 0.85rem;
        line-height: 1.5;
        margin-bottom: 10px;
    }
    
    .product-applications {
        font-size: 0.8rem;
        padding-top: 10px;
    }
}
.brand-item {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 18px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.06);
  height: 90px; /* fixed box height */
}

.brand-logo {
  max-width: 140px;
  max-height: 55px;
  width: 100%;
  height: 100%;
  object-fit: contain; /* important */
}



