  /* Additional custom styles for the about page */
         .breadcrumb-section {
            background-color: #f8f9fa;
            padding: 20px 0;
            margin-bottom: 40px;
            border-bottom: 1px solid #e9ecef;
        }
        
        .breadcrumb {
            background: transparent;
            margin-bottom: 0;
            padding: 0;
        }
        
        .breadcrumb-item a {
            color: #007bff;
            text-decoration: none;
        }
        
        .breadcrumb-item.active {
            color: #6c757d;
        }
        
        .breadcrumb-item + .breadcrumb-item::before {
            content: ">";
        }
        
        .about-content {
            margin-bottom: 40px;
        }
        
        .about-image {
            width: 100%;
            height: auto;
            border-radius: 8px;
            box-shadow: 0 4px 8px rgba(0,0,0,0.1);
            margin-bottom: 30px;
        }
        
        .main-section {
            padding: 40px 0;
        }
        
        .section-title {
            color: #2c3e50;
            margin-bottom: 25px;
            padding-bottom: 15px;
            border-bottom: 2px solid #007bff;
            font-weight: 600;
        }
        
        .about-text {
            line-height: 1.8;
            color: #555;
            margin-bottom: 20px;
            text-align: justify;
        }
        
        .highlight-text {
            background-color: #f8f9fa;
            padding: 20px;
            border-left: 4px solid #007bff;
            margin: 30px 0;
            font-style: italic;
        }
        
        .container {
            max-width: 1200px;
        }
        
        /* Header Styles */
        .main-header {
            background-color: #fff;
            padding: 15px 0;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            position: relative;
        }
        
        .header-container {
            display: flex;
            align-items: center;
            justify-content: space-between;
            position: relative;
        }
        
        .logo-container {
            display: flex;
            flex-direction: column;
            align-items: flex-start;
        }
        
        .logo-img {
            max-height: 60px;
            width: auto;
            margin-bottom: 8px;
        }
        
        .logo-tagline {
            font-size: 14px;
            color: #666;
            font-style: italic;
            margin-left: 0;
            text-align: left;
        }
        
        /* Desktop Navigation */
        .desktop-nav {
            display: block;
        }
        
        /* Mobile Header Controls */
        .mobile-header-controls {
            display: none;
            align-items: center;
            gap: 10px;
        }
        
        .mobile-search-container {
            display: none;
        }
        
        .mobile-nav-toggle {
            background: none;
            border: none;
            font-size: 24px;
            color: #333;
            cursor: pointer;
            padding: 8px;
            z-index: 1001;
        }
        
        .main-nav ul {
            list-style: none;
            padding: 0;
            margin: 0;
            display: flex;
            justify-content: flex-end;
            align-items: center;
            flex-wrap: nowrap;
        }
        
        .main-nav li {
            margin-left: 20px;
            white-space: nowrap;
        }
        
        .main-nav a {
            color: #333;
            text-decoration: none;
            font-weight: 500;
            font-size: 14px;
            transition: color 0.3s;
            padding: 5px 0;
            position: relative;
        }
        
        .main-nav a:hover {
            color: #007bff;
        }
        
        .main-nav a.active {
            color: #007bff;
            font-weight: 600;
        }
        
        .main-nav a.active::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 100%;
            height: 2px;
            background-color: #007bff;
        }
        
        .header-search-container {
            display: flex;
            align-items: center;
            margin-left: 20px;
        }
        
        .header-search {
            display: flex;
            border: 1px solid #ddd;
            border-radius: 4px;
            overflow: hidden;
        }
        
        .header-search input {
            padding: 6px 12px;
            border: none;
            width: 150px;
            outline: none;
            font-size: 13px;
        }
        
        .header-search button {
            background-color: #007bff;
            color: white;
            border: none;
            padding: 6px 12px;
            cursor: pointer;
            transition: background-color 0.3s;
            font-size: 13px;
        }
        
        .header-search button:hover {
            background-color: #0056b3;
        }
        
        /* Mobile Navigation */
        .mobile-nav-overlay {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.5);
            z-index: 999;
        }
        
        .mobile-nav-overlay.active {
            display: block;
        }
        
        .mobile-nav {
            display: none;
            position: fixed;
            top: 0;
            right: -300px;
            width: 280px;
            height: 100%;
            background-color: #fff;
            box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
            z-index: 1000;
            transition: right 0.3s ease;
            overflow-y: auto;
            padding: 20px;
        }
        
        .mobile-nav.active {
            right: 0;
            display: block;
        }
        
        .mobile-nav-header {
            display: flex;
            justify-content: flex-end;
            margin-bottom: 20px;
            padding-bottom: 15px;
            border-bottom: 1px solid #eee;
        }
        
        .mobile-nav-close {
            background: none;
            border: none;
            font-size: 24px;
            color: #333;
            cursor: pointer;
            padding: 5px;
        }
        
        .mobile-nav ul {
            list-style: none;
            padding: 0;
            margin: 0;
        }
        
        .mobile-nav li {
            margin-bottom: 10px;
        }
        
        .mobile-nav a {
            color: #333;
            text-decoration: none;
            font-weight: 500;
            font-size: 16px;
            display: block;
            padding: 12px 15px;
            border-radius: 4px;
            transition: background-color 0.3s;
        }
        
        .mobile-nav a:hover {
            background-color: #f8f9fa;
            color: #007bff;
        }
        
        .mobile-nav a.active {
            background-color: #e3f2fd;
            color: #007bff;
        }
        
        /* Footer Styles */
         /* Footer Styles - Centered columns with left-aligned text */
.main-footer {
    background-color: #2c3e50;
    color: #fff;
    padding: 40px 0 20px;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px; /* Increased side padding */
}

/* Override Bootstrap row for better centering with gaps */
.row {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin: 0 -20px; /* Increased negative margin */
}

/* Adjust Bootstrap columns with better gaps */
.col-md-4 {
    padding: 0 20px; /* Increased padding */
    max-width: 380px;
    flex: 0 0 auto;
    width: 100%;
}

@media (min-width: 768px) {
    .col-md-4 {
        width: auto;
        max-width: 380px;
        flex: 0 0 auto;
    }
}

.footer-column {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    height: 100%;
    padding: 0 10px; /* Added padding inside columns */
}

.footer-logo {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 20px;
    color: #fff;
    text-align: left;
}

.footer-contact {
    margin-bottom: 20px;
    width: 100%;
    text-align: left;
}

.footer-contact p {
    margin-bottom: 8px;
    line-height: 1.6;
    text-align: left;
}

.footer-contact i {
    margin-right: 10px;
    color: #007bff;
}

.footer-social {
    margin-bottom: 20px;
    display: flex;
    gap: 20px;
    justify-content: flex-start;
}

.footer-social a {
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    font-size: 16px;
    text-decoration: none;
    line-height: 35px;
}

/* WhatsApp Icon - Colorful */
.footer-social a.whatsapp {
    background-color: #25D366;
    color: white;
    box-shadow: 0 4px 8px rgba(37, 211, 102, 0.3);
}

.footer-social a.whatsapp:hover {
    background-color: transparent;
    color: #25D366;
    border: 2px solid #25D366;
    transform: translateY(-3px);
    box-shadow: 0 6px 12px rgba(37, 211, 102, 0.4);
}

/* Email Icon - Colorful */
.footer-social a.email {
    background-color: #EA4335;
    color: white;
    box-shadow: 0 4px 8px rgba(234, 67, 53, 0.3);
}

.footer-social a.email:hover {
    background-color: transparent;
    color: #EA4335;
    border: 2px solid #EA4335;
    transform: translateY(-3px);
    box-shadow: 0 6px 12px rgba(234, 67, 53, 0.4);
}

.footer-links {
    list-style: none;
    padding: 0;
    width: 100%;
    text-align: left;
}

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

.footer-links a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: #fff;
}

.footer-bottom {
    border-top: 1px solid #444;
    padding-top: 20px;
    margin-top: 30px;
    text-align: center;
    color: #ccc;
    font-size: 14px;
    width: 100%;
}

.footer-column h4 {
    color: #fff;
    margin-bottom: 20px;
    font-size: 18px;
    border-bottom: 2px solid #007bff;
    padding-bottom: 10px;
    display: inline-block;
    text-align: left;
}

        /* Responsive Styles */
        @media (max-width: 992px) {
            .main-nav ul {
                flex-wrap: wrap;
                justify-content: flex-start;
                margin-top: 10px;
            }
            
            .main-nav li {
                margin: 0 12px 8px 0;
            }
            
            .header-search-container {
                margin-left: 0;
                margin-top: 0;
            }
            
            .header-search input {
                width: 140px;
            }
            
            .logo-container {
                align-items: center;
                text-align: center;
            }
            
            .logo-tagline {
                text-align: center;
            }
        }
        
        
        @media (max-width: 768px) {
            .main-section {
                padding: 20px 0;
            }
            
            .breadcrumb-section {
                padding: 15px 0;
                margin-bottom: 20px;
            }
            
            .logo-container {
                align-items: center;
                margin-bottom: 0;
            }
            
            .logo-tagline {
                text-align: center;
                font-size: 12px;
            }
            
            .desktop-nav {
                display: none;
            }
            
            .mobile-header-controls {
                display: flex;
            }
            
            .mobile-search-container {
                display: block;
            }
            
            .mobile-nav-toggle {
                position: static;
            }
            
            .header-container {
                flex-wrap: nowrap;
                justify-content: space-between;
            }
            
            .logo-img {
                max-height: 50px;
                margin-bottom: 5px;
            }
            
            .main-header {
                padding: 10px 0;
            }
            
            .main-nav ul {
                justify-content: center;
            }
            
            .main-nav li {
                margin: 0 10px 8px;
            }
            
            .mobile-search-container .header-search {
                margin: 0;
            }
            
            .mobile-search-container .header-search input {
                width: 150px;
                padding: 8px 12px;
            }
            
            .mobile-search-container .header-search button {
                padding: 8px 12px;
            }
            
            /* Footer responsive adjustments */
            .footer-social {
                gap: 15px;
                justify-content: left;
            }
            
            .footer-social a {
                width: 45px;
                height: 45px;
                font-size: 22px;
            }
            
            .social-icon-item {
                gap: 12px;
            }
        }
        
        @media (max-width: 576px) {
            .header-search input {
                width: 100px;
            }
            
            .main-nav a {
                font-size: 12px;
            }
            
            .main-nav li {
                margin: 0 8px 8px;
            }
            
            .mobile-nav {
                width: 250px;
            }
            
            .mobile-nav-toggle {
                font-size: 22px;
            }
            
            .logo-img {
                max-height: 45px;
            }
            
            .mobile-search-container .header-search input {
                width: 120px;
            }
            
            /* Footer adjustments for mobile */
            .footer-column {
                margin-bottom: 25px;
            }
            
            .footer-social {
                gap: 12px;
                justify-content: left;
            }
            
            .footer-social a {
                width: 42px;
                height: 42px;
                font-size: 20px;
            }
            
            .social-icon-item {
                flex-direction: column;
                text-align: center;
                gap: 8px;
            }
            
            .social-icon-text {
                align-items: center;
            }
        }
        
        @media (max-width: 480px) {
            .main-nav ul {
                flex-wrap: wrap;
            }
            
            .main-nav li {
                margin: 0 6px 6px;
            }
            
            .header-search input {
                width: 90px;
                padding: 5px 8px;
            }
            
            .header-search button {
                padding: 5px 8px;
            }
            
            .mobile-nav {
                width: 220px;
            }
            
            .mobile-nav-toggle {
                font-size: 20px;
            }
            
            .logo-img {
                max-height: 40px;
            }
            
            .logo-tagline {
                font-size: 11px;
            }
            
            .mobile-search-container .header-search input {
                width: 100px;
                padding: 6px 10px;
            }
            
            .mobile-search-container .header-search button {
                padding: 6px 10px;
            }
            
            /* Footer adjustments for small mobile */
            .footer-social {
                gap: 10px;
                justify-content: flex-start;
                
            }
            
            .footer-social a {
                width: 40px;
                height: 40px;
                font-size: 19px;
            }

            .col-md-4 {
                margin-bottom: 35px;
                padding: 0 10px;
            }

            .footer-column {
                padding: 0 5px;
                align-items: flex-start;
            }
    
            .container {
                padding: 0 15px;
            }

            .social-icon-label {
                font-size: 13px;
            }
            
            .social-icon-desc {
                font-size: 11px;
            }
        }
        
        @media (max-width: 360px) {
            .mobile-search-container .header-search input {
                width: 80px;
                padding: 6px 8px;
            }
            
            .mobile-search-container .header-search button {
                padding: 6px 8px;
            }
            
            .mobile-nav-toggle {
                padding: 6px;
            }
            
            .footer-social a {
                width: 38px;
                height: 38px;
                font-size: 18px;
            }
            
            .footer-social {
                gap: 8px;
                justify-content: left;
            }
        }
 /* end css for about us page */


 /* Products Section */
        .products-section {
            padding: 40px 0;
        }
        
        .page-title {
            color: #2c3e50;
            font-weight: 700;
            margin-bottom: 30px;
            font-size: 2.5rem; /* Increased */
        }
        
        /* Desktop: Side-by-side layout */
        .tab-container {
            display: flex;
            background: #fff;
            border-radius: 10px;
            box-shadow: 0 4px 15px rgba(0,0,0,0.1);
            min-height: 600px; /* Increased */
        }
        
        /* Desktop: Left Tabs */
        .tab-nav {
            width: 300px; /* Wider */
            background: #f8f9fa;
            border-right: 1px solid #eaeaea;
            padding: 15px 0; /* More padding */
        }
        
        .tab-nav-item {
            display: block;
            padding: 18px 25px; /* Bigger padding */
            border-left: 5px solid transparent; /* Thicker */
            color: #555;
            text-decoration: none;
            font-weight: 600;
            border-bottom: 1px solid #eaeaea;
            transition: all 0.3s;
            display: flex;
            align-items: center;
            gap: 15px; /* More gap */
            cursor: pointer;
            font-size: 1.1rem; /* Larger font */
        }
        
        .tab-nav-item i {
            width: 28px; /* Wider */
            font-size: 1.3rem; /* Larger icons */
            text-align: center;
        }
        
        .tab-nav-item:hover {
            background: #f1f1f1;
            color: #3498db;
            padding-left: 30px; /* Slide effect */
        }
        
        .tab-nav-item.active {
            background: #fff;
            color: #3498db;
            border-left: 5px solid #3498db; /* Thicker */
            font-weight: 700;
            font-size: 1.15rem; /* Slightly larger active */
        }
        
        /* Desktop: Right Content */
        .tab-content {
            flex: 1;
            padding: 30px; /* More padding */
        }
        
        .tab-pane {
            display: none;
        }
        
        .tab-pane.active {
            display: block;
            animation: fadeIn 0.5s ease;
        }
        
        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }
        
        .tab-pane-title {
            color: #2c3e50;
            font-weight: 700; /* Bolder */
            margin-bottom: 25px;
            font-size: 1.8rem; /* Larger */
            display: flex;
            align-items: center;
            gap: 15px; /* More gap */
        }
        
        .tab-pane-title i {
            font-size: 1.5rem; /* Larger icon */
        }
        
        /* Product Images - BIGGER */
        .product-images {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 30px; /* Larger gap */
            margin-top: 25px;
        }
        
        .product-image {
            display: flex;
            align-items: center;
            justify-content: center;
            background: #f8f9fa;
            min-height: 320px; /* Much taller */
            border-radius: 8px;
            overflow: hidden;
            padding: 20px; /* More padding */
        }
        
        .product-image img {
            width: auto;
            max-width: 100%;
            height: auto;
            max-height: 280px; /* Much taller */
            display: block;
            margin: 0 auto;
            object-fit: contain;
        }
        
        /* ========== MOBILE VERTICAL LAYOUT ========== */
        @media (max-width: 768px) {
            .products-section {
                padding: 25px 0;
            }
            
            .page-title {
                font-size: 2.2rem; /* Larger */
                margin-bottom: 25px;
            }
            
            /* Mobile: Stack tabs and content vertically */
            .tab-container {
                flex-direction: column;
                box-shadow: 0 3px 10px rgba(0,0,0,0.08);
                min-height: auto;
            }
            
            /* Mobile: Vertical Tabs List (on top) */
            .tab-nav {
                width: 100%;
                display: block;
                padding: 0;
                border-right: none;
                border-bottom: 2px solid #eaeaea; /* Thicker */
                max-height: 350px; /* Taller */
                overflow-y: auto;
                -webkit-overflow-scrolling: touch;
                background: #fff;
            }
            
            /* Mobile Scrollbar Styling */
            .tab-nav::-webkit-scrollbar {
                width: 8px; /* Thicker */
            }
            
            .tab-nav::-webkit-scrollbar-track {
                background: #f5f5f5;
            }
            
            .tab-nav::-webkit-scrollbar-thumb {
                background: #3498db;
                border-radius: 4px;
            }
            
            /* Mobile Tab Items - BIGGER TEXT */
            .tab-nav-item {
                padding: 20px 25px; /* Bigger padding */
                border-left: none;
                border-bottom: 1px solid #eee;
                border-radius: 0;
                display: flex;
                align-items: center;
                gap: 20px; /* More gap */
                position: relative;
                font-size: 1.15rem; /* Larger text */
            }
            
            .tab-nav-item:last-child {
                border-bottom: none;
            }
            
            .tab-nav-item i {
                font-size: 1.4rem; /* Larger icons */
                width: 30px;
            }
            
            /* Mobile Active State */
            .tab-nav-item.active {
                background: #e8f4fc; /* Lighter blue */
                color: #3498db;
                border-left: none;
                font-weight: 700;
                font-size: 1.2rem; /* Even larger active */
            }
            
            .tab-nav-item.active::after {
                content: '';
                position: absolute;
                right: 25px;
                top: 50%;
                transform: translateY(-50%);
                width: 10px; /* Larger */
                height: 10px;
                background: #3498db;
                border-radius: 50%;
            }
            
            /* Mobile Content Area */
            .tab-content {
                padding: 25px;
                width: 100%;
            }
            
            .tab-pane-title {
                font-size: 1.6rem; /* Larger */
                margin-bottom: 20px;
                gap: 15px;
            }
            
            .tab-pane-title i {
                font-size: 1.4rem;
            }
            
            /* Mobile Product Images - BIGGER */
            .product-images {
                grid-template-columns: 1fr;
                gap: 25px; /* Larger gap */
            }
            
            .product-image {
                min-height: 280px; /* Much taller */
                padding: 25px;
            }
            
            .product-image img {
                max-height: 230px; /* Much taller */
            }
        }
        
        /* Small Mobile Devices */
        @media (max-width: 576px) {
            .page-title {
                font-size: 1.9rem;
            }
            
            .tab-nav-item {
                padding: 18px 20px;
                font-size: 1.1rem;
                gap: 15px;
            }
            
            .tab-nav-item i {
                font-size: 1.3rem;
                width: 25px;
            }
            
            .tab-nav-item.active {
                font-size: 1.15rem;
            }
            
            .tab-content {
                padding: 20px;
            }
            
            .tab-pane-title {
                font-size: 1.5rem;
            }
            
            .product-image {
                min-height: 250px;
                padding: 20px;
            }
            
            .product-image img {
                max-height: 210px;
            }
        }
        
        /* Extra Small Mobile Devices */
        @media (max-width: 400px) {
            .tab-nav-item {
                padding: 16px 18px;
                font-size: 1.05rem;
                gap: 12px;
            }
            
            .tab-nav-item i {
                font-size: 1.2rem;
            }
            
            .product-image {
                min-height: 220px;
            }
            
            .product-image img {
                max-height: 180px;
            }

            .col-md-4 {
                max-width: 100%;
                margin-bottom: 40px; /* Increased margin between stacked columns */
                padding: 0 15px;
            }

             .footer-column {
                max-width: 400px;
                padding: 0 10px;
            }
    
            .footer-social {
                justify-content: flex-start;
            }
    
            .container {
                padding: 0 20px;
            }


        }
        
        /* Tablet Landscape */
        @media (min-width: 769px) and (max-width: 992px) {
            .tab-nav {
                width: 280px;
            }
            
            .tab-nav-item {
                padding: 16px 22px;
                font-size: 1.05rem;
            }
            
            .product-image {
                min-height: 280px;
            }
            
            .product-image img {
                max-height: 240px;
            }
        }

        /* Large Desktop */
        @media (min-width: 1200px) {
            .tab-nav {
                width: 320px;
            }
            
            .tab-nav-item {
                padding: 20px 28px;
                font-size: 1.15rem;
            }
            
            .product-image {
                min-height: 350px;
            }
            
            .product-image img {
                max-height: 300px;
            }
        }
  
 /* end css for products page */


 /* Brands Section */
    .brands-section {
        padding: 40px 0;
        background: #f8f9fa;
    }
    
    .page-title {
        color: #2c3e50;
        font-weight: 700;
        margin-bottom: 40px;
        font-size: 2.5rem;
        text-align: left;
    }
    
    /* Brands Filter */
    .brands-filter {
        margin-bottom: 30px;
    }
    
    .filter-buttons {
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
        justify-content: center;
        margin-bottom: 30px;
    }
    
    .filter-btn {
        padding: 8px 20px;
        background: #fff;
        border: 2px solid #3498db;
        color: #3498db;
        border-radius: 25px;
        font-weight: 600;
        cursor: pointer;
        transition: all 0.3s;
    }
    
    .filter-btn:hover,
    .filter-btn.active {
        background: #3498db;
        color: white;
    }
    
    .search-box {
        max-width: 500px;
        margin: 0 auto 30px;
    }
    
    .search-box input {
        width: 100%;
        padding: 12px 20px;
        border: 2px solid #ddd;
        border-radius: 25px;
        font-size: 1rem;
        transition: border-color 0.3s;
    }
    
    .search-box input:focus {
        outline: none;
        border-color: #3498db;
    }
    
    /* Brands Grid */
    .brands-grid {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
        gap: 20px;
    }
    
    .brand-card {
        background: white;
        border-radius: 10px;
        padding: 20px;
        box-shadow: 0 3px 10px rgba(0,0,0,0.08);
        transition: transform 0.3s, box-shadow 0.3s;
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        min-height: 180px;
        justify-content: space-between;
    }
    
    .brand-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 20px rgba(0,0,0,0.15);
    }
    
    .brand-logo {
        flex-shrink: 0;
        width: 100px;
        height: 100px;
        background: #f8f9fa;
        border-radius: 10px;
        display: flex;
        align-items: center;
        justify-content: center;
        border: 1px solid #eaeaea;
        padding: 15px;
        margin-bottom: 15px;
    }
    
    .brand-logo img {
        max-width: 100%;
        max-height: 100%;
        object-fit: contain;
    }
    
    .brand-info {
        width: 100%;
        flex: 1;
        display: flex;
        flex-direction: column;
        justify-content: flex-end;
    }
    
    .brand-title {
        font-size: 1.5rem;
        font-weight: 700;
        color: #2c3e50;
        margin: 0;
        line-height: 1.3;
        word-wrap: break-word;
        overflow-wrap: break-word;
        hyphens: auto;
        min-height: 2.6em; /* Ensures consistent height for 2 lines */
    }
    
    /* Force brand names to stay on one line on desktop */
    @media (min-width: 769px) {
        .brand-title {
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
            width: 100%;
            display: block;
            min-height: auto;
        }
        
        .brands-grid {
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 15px;
        }
        
        .brand-card {
            padding: 15px;
            min-height: 160px;
        }
        
        .brand-logo {
            width: 90px;
            height: 90px;
            padding: 12px;
            margin-bottom: 12px;
        }
    }
    
    .brand-subtitle {
        color: #7f8c8d;
        font-size: 0.95rem;
        display: none; /* Hide subtitle if not needed */
    }
    
    .brand-letter-group {
        margin-bottom: 40px;
    }
    
    .letter-header {
        font-size: 1.8rem;
        font-weight: 700;
        color: #3498db;
        margin-bottom: 20px;
        padding-bottom: 10px;
        border-bottom: 2px solid #eaeaea;
    }
    
    /* Fix for the col-md-3 tabl structure */
    .col-md-3.tabl {
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 100%;
        height: 100%;
    }
    
    .col-md-3.tabl img {
        max-width: 100%;
        max-height: 100%;
        object-fit: contain;
    }
    
    /* Mobile Responsive */
    @media (max-width: 768px) {
        .brands-section {
            padding: 30px 0;
        }
        
        .page-title {
            font-size: 2rem;
            margin-bottom: 30px;
        }
        
        .brands-grid {
            grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
            gap: 15px;
        }
        
        .brand-card {
            padding: 15px;
            gap: 12px;
            min-height: 140px;
        }
        
        .brand-logo {
            width: 70px;
            height: 70px;
            padding: 10px;
            margin-bottom: 10px;
        }
        
        .brand-title {
            font-size: 1.5rem;
            white-space: normal;
            overflow: visible;
            text-overflow: clip;
            min-height: 2em;
        }
        
        .filter-buttons {
            gap: 8px;
        }
        
        .filter-btn {
            padding: 6px 15px;
            font-size: 0.9rem;
        }
    }
    
    @media (max-width: 576px) {
        .page-title {
            font-size: 1.8rem;
        }
        
        .brands-grid {
            grid-template-columns: 1fr;
            gap: 15px;
        }
        
        .brand-card {
            padding: 15px;
            flex-direction: row;
            text-align: left;
            min-height: 100px;
        }
        
        .brand-logo {
            width: 60px;
            height: 60px;
            margin-bottom: 0;
            margin-right: 15px;
            flex-shrink: 0;
        }
        
        .brand-info {
            text-align: left;
        }
        
        .brand-title {
            font-size: 1.5rem;
            text-align: left;
        }
        
        .brand-subtitle {
            font-size: 0.85rem;
        }
    }
    
    @media (max-width: 400px) {
        .brand-card {
            padding: 12px;
        }
        
        .brand-logo {
            width: 50px;
            height: 50px;
            margin-right: 12px;
        }
        
        .brand-title {
            font-size: 0.95rem;
        }
    }
        
 /* end css for brands page */


 /* Services Section css */
        .services-section {
            padding: 60px 0;
            background: #f8f9fa;
        }
        
        .page-title {
            color: #2c3e50;
            font-weight: 700;
            margin-bottom: 50px;
            font-size: 2.5rem;
            text-align: left;
        }
        
        /* Services Grid */
        .services-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 30px;
            margin-bottom: 60px;
        }
        
        .service-card {
            background: white;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.08);
            transition: transform 0.3s, box-shadow 0.3s;
            height: 100%;
        }
        
        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0,0,0,0.15);
        }
        
        .service-image {
            height: 250px;
            overflow: hidden;
            position: relative;
        }
        
        .service-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s;
        }
        
        .service-card:hover .service-image img {
            transform: scale(1.05);
        }
        
        .service-overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(to bottom, rgba(52, 152, 219, 0.1), rgba(52, 152, 219, 0.4));
        }
        
        .service-content {
            padding: 25px;
        }
        
        .service-title {
            color: #2c3e50;
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 15px;
            text-align: center;
        }
        
        .service-description {
            color: #7f8c8d;
            line-height: 1.6;
            margin-bottom: 20px;
        }
        
        /* Training and Maintenance Details Section */
        .details-section {
            margin-top: 40px;
            margin-bottom: 60px;
        }
        
        .details-container {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 30px;
        }
        
        .detail-card {
            background: white;
            border-radius: 12px;
            padding: 30px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.08);
        }
        
        .detail-header {
            display: flex;
            align-items: center;
            margin-bottom: 25px;
            padding-bottom: 15px;
            border-bottom: 3px solid #3498db;
        }
        
        .detail-icon {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 60px;
            height: 60px;
            background: #3498db;
            color: white;
            border-radius: 50%;
            font-size: 1.5rem;
            margin-right: 20px;
        }
        
        .detail-title {
            color: #2c3e50;
            font-size: 1.8rem;
            font-weight: 700;
            margin: 0;
        }
        
        /* Scrollable Container for Maintenance */
        .scrollable-container {
            max-height: 400px;
            overflow-y: auto;
            padding-right: 10px;
            margin-top: 15px;
        }
        
        /* Custom Scrollbar */
        .scrollable-container::-webkit-scrollbar {
            width: 8px;
        }
        
        .scrollable-container::-webkit-scrollbar-track {
            background: #f1f1f1;
            border-radius: 4px;
        }
        
        .scrollable-container::-webkit-scrollbar-thumb {
            background: #3498db;
            border-radius: 4px;
        }
        
        .scrollable-container::-webkit-scrollbar-thumb:hover {
            background: #2980b9;
        }
        
        .service-list {
            list-style: none;
            padding: 0;
            margin: 0;
        }
        
        .service-item {
            padding: 12px 0;
            border-bottom: 1px solid #eee;
            color: #555;
            display: flex;
            align-items: flex-start;
        }
        
        .service-item:last-child {
            border-bottom: none;
        }
        
        .service-item i {
            color: #3498db;
            margin-right: 15px;
            margin-top: 3px;
            flex-shrink: 0;
        }
        
        .service-text {
            line-height: 1.5;
        }
        
        /* Scroll Indicator */
        .scroll-indicator {
            text-align: center;
            margin-top: 15px;
            color: #3498db;
            font-size: 0.9rem;
            display: none;
        }
        
        .scroll-indicator i {
            animation: bounce 2s infinite;
        }
        
        @keyframes bounce {
            0%, 20%, 50%, 80%, 100% {
                transform: translateY(0);
            }
            40% {
                transform: translateY(-5px);
            }
            60% {
                transform: translateY(-3px);
            }
        }
        
        /* Mobile Responsive */
        @media (max-width: 992px) {
            .services-grid {
                grid-template-columns: 1fr;
            }
            
            .details-container {
                grid-template-columns: 1fr;
            }
            
            .scrollable-container {
                max-height: 300px;
            }
        }
        
        @media (max-width: 768px) {
            .services-section {
                padding: 40px 0;
            }
            
            .page-title {
                font-size: 2rem;
                margin-bottom: 40px;
            }
            
            .services-grid {
                gap: 25px;
            }
            
            .service-image {
                height: 220px;
            }
            
            .service-content {
                padding: 20px;
            }
            
            .service-title {
                font-size: 1.4rem;
            }
            
            .detail-card {
                padding: 25px 20px;
            }
            
            .detail-title {
                font-size: 1.6rem;
            }
            
            .scroll-indicator {
                display: block;
            }
        }
        
        @media (max-width: 576px) {
            .page-title {
                font-size: 1.8rem;
            }
            
            .service-image {
                height: 200px;
            }
            
            .service-title {
                font-size: 1.3rem;
            }
            
            .detail-icon {
                width: 50px;
                height: 50px;
                font-size: 1.3rem;
                margin-right: 15px;
            }
            
            .detail-title {
                font-size: 1.4rem;
            }
            
            .service-item {
                padding: 10px 0;
                font-size: 0.95rem;
            }
            
            .scrollable-container {
                max-height: 250px;
            }
        }

 /* end css for services page */

 /* Enquiry page css */
      .section-header {
            margin-bottom: 40px;
            text-align: center;
        }

        .section-title {
            font-size: 2.5rem;
            color: #333;
            margin-bottom: 15px;
            font-weight: 600;
            text-align: left;
        }

        .section-subtitle {
            font-size: 1.3rem;
            color: #666;
            max-width: 800px;
            margin: 0 auto;
        }

        .enquiry-form-container {
            background-color: #fff;
            border-radius: 8px;
            box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
            padding: 40px;
            margin-bottom: 60px;
        }

        .form-section {
            margin-bottom: 40px;
            padding-bottom: 30px;
            border-bottom: 1px solid #eee;
        }

        .form-section:last-child {
            border-bottom: none;
        }

        .form-section-title {
            font-size: 1.6rem;
            color: #2c5aa0;
            margin-bottom: 25px;
            padding-bottom: 15px;
            border-bottom: 2px solid #f0f4f9;
            font-weight: 600;
        }

        .form-group {
            margin-bottom: 25px;
        }

        .form-group label {
            display: block;
            margin-bottom: 10px;
            font-weight: 500;
            color: #444;
            font-size: 1.4rem;
        }

        .required {
            color: #e74c3c;
            font-size: 1.1rem;
        }

        /* Contact Information Form Fields - Larger */
        .form-control {
            width: 100%;
            padding: 15px 18px;
            border: 1px solid #ddd;
            border-radius: 4px;
            font-size: 1.1rem;
            transition: all 0.3s;
        }

        .form-control:focus {
            border-color: #2c5aa0;
            box-shadow: 0 0 0 0.2rem rgba(44, 90, 160, 0.2);
            outline: none;
        }

        .form-control::placeholder {
            font-size: 1.1rem;
            color: #888;
        }

        textarea.form-control {
            resize: vertical;
            min-height: 120px;
            font-size: 1.1rem;
        }

        textarea.form-control::placeholder {
            font-size: 1.1rem;
        }

        /* Order Table Styles */
        .order-table-container {
            overflow-x: auto;
        }

        .order-table {
            width: 100%;
            border-collapse: collapse;
            margin-top: 10px;
        }

        .order-table thead {
            background-color: #f8f9fa;
        }

        .order-table th {
            padding: 18px 12px;
            text-align: left;
            font-weight: 600;
            color: #444;
            border-bottom: 2px solid #dee2e6;
            font-size: 1.1rem;
        }

        .order-table td {
            padding: 18px 12px;
            border-bottom: 1px solid #eee;
            vertical-align: middle;
        }

        .order-table tbody tr:hover {
            background-color: #f9f9f9;
        }

        /* Product Details Form Fields - Larger */
        .product-input {
            width: 100%;
            padding: 15px 18px;
            border: 1px solid #ddd;
            border-radius: 4px;
            font-size: 1.1rem;
            transition: all 0.3s;
        }

        .product-input::placeholder {
            font-size: 1.2rem;
            color: #888;
            font-style: italic;
        }

        .quantity-input {
            width: 100%;
            padding: 15px 18px;
            border: 1px solid #ddd;
            border-radius: 4px;
            font-size: 1.2rem;
            text-align: center;
        }

        /* Single File Upload Column */
        .file-upload-container {
            display: flex;
            flex-direction: column;
        }

        .file-upload-label {
            cursor: pointer;
        }

        .file-input {
            display: none;
        }

        .file-upload-btn {
            background-color: #2c5aa0;
            color: white;
            border: none;
            border-radius: 4px;
            padding: 12px 18px;
            font-size: 1.1rem;
            transition: all 0.3s;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 100%;
            margin-bottom: 8px;
        }

        .file-upload-btn:hover {
            background-color: #234a87;
        }

        .file-upload-btn i {
            margin-right: 10px;
            font-size: 1.2rem;
        }

        .file-name {
            display: block;
            font-size: 1rem;
            color: #666;
            text-align: center;
            margin-top: 8px;
        }

        .file-help {
            display: block;
            color: #888;
            font-size: 0.95rem;
            text-align: center;
            margin-top: 8px;
        }

        /* Form Actions - Larger Buttons */
        .form-actions {
            display: flex;
            justify-content: center;
            margin-top: 50px;
        }

        .btn {
            padding: 15px 45px;
            border: none;
            border-radius: 4px;
            font-size: 1.2rem;
            font-weight: 500;
            cursor: pointer;
            transition: all 0.3s;
            display: inline-flex;
            align-items: center;
            justify-content: center;
        }

        .btn i {
            margin-right: 12px;
            font-size: 1.3rem;
        }

        .btn-primary {
            background-color: #2c5aa0;
            color: white;
            font-size: 1.2rem;
        }

        .btn-primary:hover {
            background-color: #234a87;
            transform: translateY(-2px);
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        }

        .btn-outline-secondary {
            background-color: transparent;
            color: #6c757d;
            border: 1px solid #6c757d;
            font-size: 1.2rem;
        }

        .btn-outline-secondary:hover {
            background-color: #6c757d;
            color: white;
        }

        /* Add More Products Button - Larger */
        .add-more-row {
            margin-top: 30px;
            text-align: center;
        }

        /* Responsive Styles */
        @media (max-width: 768px) {
            .enquiry-form-container {
                padding: 25px;
            }
            
            .section-title {
                font-size: 2rem;
            }
            
            .section-subtitle {
                font-size: 1.1rem;
            }
            
            .form-section-title {
                font-size: 1.4rem;
            }
            
            .order-table th, .order-table td {
                padding: 12px 8px;
                font-size: 1rem;
            }
            
            .form-control {
                font-size: 1rem;
                padding: 12px 15px;
            }
            
            .form-control::placeholder {
                font-size: 1rem;
            }
            
            .product-input {
                font-size: 1rem;
                padding: 12px 15px;
            }
            
            .product-input::placeholder {
                font-size: 1rem;
            }
            
            .quantity-input {
                font-size: 1rem;
                padding: 12px 15px;
            }
            
            .file-upload-btn {
                font-size: 1rem;
                padding: 10px 15px;
            }
            
            .btn {
                width: 100%;
                padding: 15px 20px;
                font-size: 1.1rem;
                margin-bottom: 15px;
            }
            
            .form-group label {
                font-size: 1.4rem;
            }
        }
 /* end css for enquiry page */

  /* Contact Page css */
        .section-header {
            margin-bottom: 40px;
            text-align: center;
        }

        .section-title {
            font-size: 2.2rem;
            color: #333;
            margin-bottom: 10px;
            font-weight: 600;
            text-align: left;
        }

        .section-subtitle {
            font-size: 1.1rem;
            color: #666;
            max-width: 800px;
            margin: 0 auto;
        }

        .contact-container {
            margin-bottom: 60px;
        }

        /* Contact Info Styles */
        .contact-info-box {
            background-color: #fff;
            border-radius: 8px;
            box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
            padding: 30px;
            height: 100%;
            margin-bottom: 30px;
        }

        .contact-info-box h3 {
            color: #2c5aa0;
            margin-bottom: 25px;
            padding-bottom: 15px;
            border-bottom: 2px solid #f0f4f9;
            font-weight: 600;
        }

        .company-id {
            background-color: #f8f9fa;
            padding: 10px 15px;
            border-radius: 5px;
            margin-bottom: 25px;
            font-weight: 600;
            color: #2c5aa0;
            border-left: 4px solid #2c5aa0;
        }

        .company-address {
            line-height: 1.8;
            margin-bottom: 30px;
            color: #555;
        }

        .company-address p {
            margin-bottom: 5px;
        }

        .contact-details {
            margin-bottom: 30px;
        }

        .contact-item {
            display: flex;
            align-items: flex-start;
            margin-bottom: 15px;
            padding-bottom: 15px;
            border-bottom: 1px solid #eee;
        }

        .contact-item:last-child {
            border-bottom: none;
            margin-bottom: 0;
            padding-bottom: 0;
        }

        .contact-icon {
            width: 40px;
            height: 40px;
            background-color: #f0f4f9;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #2c5aa0;
            font-size: 1.2rem;
            margin-right: 15px;
            flex-shrink: 0;
        }

        .contact-text {
            flex: 1;
        }

        .contact-text strong {
            display: block;
            color: #333;
            margin-bottom: 3px;
        }

        .contact-text a {
            color: #555;
            text-decoration: none;
            transition: color 0.3s;
        }

        .contact-text a:hover {
            color: #2c5aa0;
        }

        /* Contact Form Styles */
        .contact-form-box {
            background-color: #fff;
            border-radius: 8px;
            box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
            padding: 30px;
            height: 100%;
        }

        .contact-form-box h3 {
            color: #2c5aa0;
            margin-bottom: 25px;
            padding-bottom: 15px;
            border-bottom: 2px solid #f0f4f9;
            font-weight: 600;
        }

        .form-description {
            color: #666;
            margin-bottom: 25px;
            font-style: italic;
            line-height: 1.6;
        }

        .form-group {
            margin-bottom: 20px;
        }

        .form-group label {
            display: block;
            margin-bottom: 8px;
            font-weight: 500;
            color: #444;
        }

        .form-control {
            width: 100%;
            padding: 12px 15px;
            border: 1px solid #ddd;
            border-radius: 4px;
            font-size: 1.3rem;
            transition: all 0.3s;
        }

        .form-control:focus {
            border-color: #2c5aa0;
            box-shadow: 0 0 0 0.2rem rgba(44, 90, 160, 0.2);
            outline: none;
        }

        textarea.form-control {
            resize: vertical;
            min-height: 150px;
        }

        /* Form Actions */
        .form-actions {
            display: flex;
            justify-content: flex-start;
            gap: 15px;
            margin-top: 30px;
        }

        .btn {
            padding: 12px 30px;
            border: none;
            border-radius: 4px;
            font-size: 1rem;
            font-weight: 500;
            cursor: pointer;
            transition: all 0.3s;
            display: inline-flex;
            align-items: center;
            justify-content: center;
        }

        .btn i {
            margin-right: 8px;
        }

        .btn-primary {
            background-color: #2c5aa0;
            color: white;
        }

        .btn-primary:hover {
            background-color: #234a87;
            transform: translateY(-2px);
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        }

        .btn-secondary {
            background-color: #6c757d;
            color: white;
        }

        .btn-secondary:hover {
            background-color: #5a6268;
        }

        .main-section {
            padding: 60px 0;
        }

        /* Responsive Styles */
        @media (max-width: 768px) {
            .contact-info-box,
            .contact-form-box {
                padding: 20px;
            }
            
            .section-title {
                font-size: 1.8rem;
            }
            
            .form-actions {
                flex-direction: column;
            }
            
            .btn {
                width: 100%;
                margin-bottom: 10px;
            }
            
            .map-container {
                height: 300px;
            }
        }
    /* end contact page css */

 
    /* Footer Styles - UPDATED FOR MOBILE RESPONSIVENESS */
.main-footer {
    background-color: #2c3e50;
    color: #fff;
    padding: 40px 0 20px;
}

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

/* UPDATED: Better row handling for mobile */
.row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center; /* Changed from space-between to center */
    margin: 0 -15px; /* Adjusted negative margin */
}

/* UPDATED: Better column handling */
.col-md-4 {
    padding: 0 15px; /* Standard padding */
    width: 100%; /* Full width on mobile */
    margin-bottom: 30px; /* Space between stacked columns */
    box-sizing: border-box;
}

/* Desktop layout */
@media (min-width: 768px) {
    .col-md-4 {
        width: 33.333%; /* 3 columns on desktop */
        flex: 0 0 auto;
        margin-bottom: 0; /* Remove margin on desktop */
    }
    
    .row {
        justify-content: space-between; /* Space between on desktop */
    }
}

/* UPDATED: Consistent footer columns */
.footer-column {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    height: 100%;
    padding: 0;
    max-width: 400px; /* Limit max width for better mobile layout */
    margin: 0 auto; /* Center align on mobile */
}

.footer-logo {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 20px;
    color: #fff;
    text-align: left;
    width: 100%;
}

.footer-contact {
    margin-bottom: 20px;
    width: 100%;
    text-align: left;
}

.footer-contact p {
    margin-bottom: 8px;
    line-height: 1.6;
    text-align: left;
}

.footer-contact i {
    margin-right: 10px;
    color: #007bff;
}

.footer-social {
    margin-bottom: 20px;
    display: flex;
    gap: 15px;
    justify-content: flex-start;
    width: 100%;
}

.footer-social a {
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 18px;
    text-decoration: none;
}

/* WhatsApp Icon - Colorful */
.footer-social a.whatsapp {
    background-color: #25D366;
    color: white;
    box-shadow: 0 4px 8px rgba(37, 211, 102, 0.3);
}

.footer-social a.whatsapp:hover {
    background-color: transparent;
    color: #25D366;
    border: 2px solid #25D366;
    transform: translateY(-3px);
    box-shadow: 0 6px 12px rgba(37, 211, 102, 0.4);
}

/* Email Icon - Colorful */
.footer-social a.email {
    background-color: #EA4335;
    color: white;
    box-shadow: 0 4px 8px rgba(234, 67, 53, 0.3);
}

.footer-social a.email:hover {
    background-color: transparent;
    color: #EA4335;
    border: 2px solid #EA4335;
    transform: translateY(-3px);
    box-shadow: 0 6px 12px rgba(234, 67, 53, 0.4);
}

.footer-links {
    list-style: none;
    padding: 0;
    width: 100%;
    text-align: left;
}

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

.footer-links a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s;
    display: inline-block;
    padding: 2px 0;
}

.footer-links a:hover {
    color: #fff;
}

.footer-bottom {
    border-top: 1px solid #444;
    padding-top: 20px;
    margin-top: 30px;
    text-align: center;
    color: #ccc;
    font-size: 14px;
    width: 100%;
}

.footer-column h4 {
    color: #fff;
    margin-bottom: 20px;
    font-size: 18px;
    border-bottom: 2px solid #007bff;
    padding-bottom: 10px;
    display: block; /* Changed from inline-block to block */
    text-align: left;
    width: 100%;
}

/* UPDATED: Mobile Responsive Styles */
@media (max-width: 992px) {
    .container {
        padding: 0 20px;
    }
    
    .row {
        justify-content: center;
        gap: 20px;
    }
    
    .col-md-4 {
        flex: 1 1 300px; /* Flexible width with minimum */
        max-width: 350px;
    }
}

@media (max-width: 768px) {
    .main-footer {
        padding: 30px 0 15px;
    }
    
    .container {
        padding: 0 15px;
    }
    
    .row {
        flex-direction: column; /* Stack vertically */
        align-items: center;
        gap: 30px;
        margin: 0;
    }
    
    .col-md-4 {
        width: 100%;
        max-width: 400px; /* Limit width for better alignment */
        padding: 0;
        margin-bottom: 30px;
    }
    
    .footer-column {
        max-width: 400px; /* Match column max-width */
        width: 100%;
    }
    
    .footer-social {
        justify-content: flex-start;
        gap: 15px;
    }
    
    .footer-social a {
        width: 45px;
        height: 45px;
        font-size: 20px;
    }
}

@media (max-width: 576px) {
    .main-footer {
        padding: 25px 0 15px;
    }
    
    .col-md-4 {
        margin-bottom: 25px;
        max-width: 100%;
    }
    
    .footer-column {
        max-width: 100%;
        padding: 0 10px;
    }
    
    .footer-logo {
        font-size: 22px;
    }
    
    .footer-column h4 {
        font-size: 18px;
        margin-bottom: 15px;
    }
    
    .footer-social {
        gap: 12px;
    }
    
    .footer-social a {
        width: 42px;
        height: 42px;
        font-size: 18px;
    }
    
    .footer-contact p {
        font-size: 14px;
    }
    
    .footer-links a {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .main-footer {
        padding: 20px 0 10px;
    }
    
    .container {
        padding: 0 15px;
    }
    
    .col-md-4 {
        margin-bottom: 25px;
        padding: 0;
    }
    
    .footer-column {
        padding: 0;
    }
    
    .footer-social {
        gap: 10px;
    }
    
    .footer-social a {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
    
    .footer-contact p {
        font-size: 13px;
    }
    
    .footer-links a {
        font-size: 13px;
    }
}

@media (max-width: 360px) {
    .footer-social {
        gap: 8px;
    }
    
    .footer-social a {
        width: 38px;
        height: 38px;
        font-size: 15px;
    }
}
 /* Homepage css */
        .hero-banner {
            position: relative;
            height: 600px; /* Increased height for better image display */
            background: url('../images/bg/home.jpg');
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
            display: flex;
            align-items: center;
            color: white;
            margin-bottom: 60px;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0,0,0,0.2);
        }
        
        /* Optional: Add a semi-transparent overlay to ensure text readability */
        .hero-banner::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(
                90deg, 
                rgba(0, 0, 0, 0.7) 0%, 
                rgba(0, 0, 0, 0.4) 50%, 
                rgba(0, 0, 0, 0.1) 100%
            );
            z-index: 1;
        }
        
        .hero-content {
            position: relative;
            max-width: 600px;
            padding: 40px;
            z-index: 2;
            text-shadow: 2px 2px 8px rgba(0,0,0,0.6);
        }
        
        .hero-content h1 {
            font-size: 3.5rem;
            font-weight: 800;
            margin-bottom: 20px;
            color: white;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        
        .hero-content p {
            font-size: 1.4rem;
            margin-bottom: 35px;
            color: white;
            line-height: 1.6;
            font-weight: 300;
        }
        
        .btn-primary {
            background-color: #3498db;
            border-color: #3498db;
            padding: 15px 40px;
            font-weight: 700;
            border-radius: 30px;
            transition: all 0.3s ease;
            font-size: 1.1rem;
            text-transform: uppercase;
            letter-spacing: 1px;
            box-shadow: 0 5px 20px rgba(52, 152, 219, 0.4);
        }
        
        .btn-primary:hover {
            background-color: #2980b9;
            border-color: #2980b9;
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(52, 152, 219, 0.5);
        }
        
        .section-title {
            text-align: center;
            margin-bottom: 50px;
            color: #2c3e50;
        }
        
        .section-title h2 {
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 15px;
            position: relative;
            display: inline-block;
        }
        
        .section-title h2:after {
            content: '';
            position: absolute;
            width: 70px;
            height: 3px;
            background-color: #3498db;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
        }
        
        .section-title p {
            color: #7f8c8d;
            font-size: 1.1rem;
            max-width: 700px;
            margin: 0 auto;
        }
        
        .about-section {
            padding: 80px 0;
            background-color: #f8f9fa;
        }
        
        .about-content {
            padding: 30px;
        }
        
        .about-content h3 {
            color: #2c3e50;
            margin-bottom: 20px;
            font-weight: 600;
        }
        
        .about-content p {
            color: #555;
            line-height: 1.8;
            margin-bottom: 25px;
            font-size: 1.6rem;
        }
        
        .read-more-btn {
            color: #3498db;
            font-weight: 600;
            display: inline-flex;
            align-items: center;
            transition: all 0.3s ease;
            text-transform: uppercase;
            font-size: 0.9rem;
            letter-spacing: 1px;
        }
        
        .read-more-btn:hover {
            color: #2980b9;
            text-decoration: none;
            transform: translateX(5px);
        }
        
        .read-more-btn i {
            margin-left: 8px;
            transition: transform 0.3s ease;
        }
        
        .read-more-btn:hover i {
            transform: translateX(5px);
        }
        
        .products-section, .brands-section, .services-section {
            padding: 30px 20px;
        }
        
        .product-card, .brand-card, .service-card {
            background: white;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.08);
            transition: all 0.3s ease;
            height: 100%;
            margin-bottom: 30px;
            border: 1px solid #eaeaea;
            display: flex;
            flex-direction: column;
        }
        
        .product-card:hover, .brand-card:hover, .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0,0,0,0.15);
        }
        
        /* Make product and service images same height */
        .product-img, .service-img {
            height: 200px; /* Same height for both */
            min-height: 200px; /* Ensure minimum height */
            background-color: #f8f9fa;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 0px;
            overflow: hidden;
            flex-shrink: 0;
        }
        
        /* Make sure images fill the container properly */
        .product-img img, .service-img img, .brand-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.3s ease;
        }
        
        .product-card:hover .product-img img,
        .service-card:hover .service-img img {
            transform: scale(1.05);
        }
        
        /* Ensure all cards have consistent height */
        .product-card, .service-card {
            height: 100%;
            display: flex;
            flex-direction: column;
            margin-bottom: 30px;
        }
        
        /* Make sure content area grows properly */
        .product-content, .service-content, .brand-content {
            padding: 25px;
            display: flex;
            flex-direction: column;
            flex-grow: 1;
        }
        
        .product-content h4, .brand-content h4, .service-content h4 {
            color: #2c3e50;
            margin-bottom: 15px;
            font-weight: 600;
            text-align: center;
        }
        
        .product-content p, .brand-content p, .service-content p {
            color: #666;
            line-height: 1.6;
            margin-bottom: 20px;
            text-align: justify;
            flex-grow: 1;
        }
        
        /* Fix for brand card text alignment */
        .brand-content p {
            text-align: justify !important;
        }
        
        /* Brands Section - Updated for 3x2 layout */
        .brands-section {
            padding: 80px 0;
            background-color: #f8f9fa;
            /* overflow: hidden; */
        }
        
        .brands-section > .container {
            background-color: transparent !important;
            padding: 0 15px;
            overflow: visible !important;
        }
        
        /* Brands grid layout */
        .brands-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr); /* Always 3 columns on desktop */
            gap: 30px;
            margin-bottom: 30px;
        }
        
        /* First row */
        .brands-row-1 {
            display: contents; /* Makes all direct children part of the grid */
        }
        
        /* Second row - starts from 4th item */
        .brands-row-2 {
            display: contents; /* Makes all direct children part of the grid */
        }
        
        .brand-card {
            background: white;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.08);
            transition: all 0.3s ease;
            display: flex;
            flex-direction: column;
            height: 100%;
            border: 1px solid #eaeaea;
            margin-bottom: 0;
        }
        
        .brand-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 15px 30px rgba(0,0,0,0.15);
        }
        
        .brand-img {
            height: 200px;
            min-height: 200px;
            background-color: #f8f9fa;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 0px;
            overflow: hidden;
            flex-shrink: 0;
            position: relative;
        }
        
        .brand-img img {
            max-width: 100%;
            max-height: 100%;
            object-fit: contain;
            transition: transform 0.3s ease;
        }
        
        .brand-card:hover .brand-img img {
            transform: scale(1.05);
        }
        
        .brand-content {
            padding: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-grow: 1;
            text-align: center;
            min-height: 70px;
        }
        
        .brand-content h4 {
            color: #2c3e50;
            margin: 0;
            font-weight: 600;
            font-size: 1.2rem;
            line-height: 1.3;
        }
        
        /* Mobile Responsive Styles */
        @media (max-width: 991px) {
            .brands-grid {
                gap: 20px;
            }
            
            .brand-img {
                height: 180px;
                min-height: 180px;
                padding: 0px;
            }
            
            .brand-content {
                min-height: 60px;
                padding: 15px;
            }
            
            .brand-content h4 {
                font-size: 1.1rem;
            }
        }
        
        /* Tablet - Show 2 columns */
        @media (max-width: 768px) {
            .hero-banner {
                height: 500px;
                margin-bottom: 40px;
            }
            
            .hero-content {
                padding: 20px;
                text-align: center;
            }
            
            .hero-content h1 {
                font-size: 2.5rem;
            }
            
            .hero-content p {
                font-size: 1.2rem;
            }
            
            .btn-primary {
                padding: 12px 30px;
                font-size: 1rem;
            }
            
            .section-title h2 {
                font-size: 2rem;
            }
            
            .about-section, .products-section, .brands-section, .services-section {
                padding: 60px 0;
            }
            
            .product-img, .service-img {
                height: 180px;
                min-height: 180px;
            }
            
            /* Tablet: Show 2 columns */
            .brands-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 20px;
            }
            
            .brand-img {
                height: 160px;
                min-height: 160px;
                padding: 0px;
            }
            
            .brand-content {
                min-height: 50px;
                padding: 15px;
            }
            
            .brand-content h4 {
                font-size: 1rem;
            }
        }
        
        /* Mobile - Show 1 column */
        @media (max-width: 576px) {
            .hero-banner {
                height: 400px;
            }
            
            .hero-content h1 {
                font-size: 2rem;
            }
            
            .hero-content p {
                font-size: 1rem;
            }
            
            .product-img, .service-img {
                height: 160px;
                min-height: 160px;
            }
            
            /* Mobile: Show 1 column */
            .brands-grid {
                grid-template-columns: 1fr;
                gap: 15px;
                max-width: 400px;
                margin-left: auto;
                margin-right: auto;
            }
            
            .brand-img {
                height: 180px;
                min-height: 180px;
                padding: 0px;
            }
            
            .brand-content {
                min-height: 50px;
                padding: 15px;
            }
            
            .brand-content h4 {
                font-size: 1.1rem;
            }
        }
        
        /* Small Mobile */
        @media (max-width: 480px) {
            .brands-grid {
                max-width: 350px;
            }
            
            .brand-img {
                height: 160px;
                min-height: 160px;
                padding: 0px;
            }
        }
        
        /* Very Small Mobile */
        @media (max-width: 375px) {
            .brands-grid {
                max-width: 300px;
                gap: 12px;
            }
            
            .brand-img {
                height: 140px;
                min-height: 140px;
                padding: 0px;
            }
            
            .brand-content {
                padding: 12px;
            }
            
            .brand-content h4 {
                font-size: 1rem;
            }
        }
        
        /* Ensure no horizontal overflow */
        .brands-section .container {
            overflow: hidden;
        }
        
        .see-all-btn {
            text-align: center;
           margin-top: 25px !important;
        }
        
        .btn-light {
            background-color: white;
            color: #2c3e50;
            border: none;
            padding: 12px 30px;
            font-weight: 600;
            border-radius: 30px;
            transition: all 0.3s ease;
        }
        
        .btn-light:hover {
            background-color: #f8f9fa;
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }
        
        /* Products section enhancements */
        .product-category-list {
            list-style-type: none;
            padding-left: 0;
            margin-bottom: 20px;
        }
        
        .product-category-list li {
            padding: 8px 0;
            border-bottom: 1px solid #eee;
            color: #555;
            font-size: 0.9rem;
        }
        
        .product-category-list li:last-child {
            border-bottom: none;
        }
        
        .product-category-list li i {
            color: #3498db;
            margin-right: 10px;
        }
        
        /* Ensure equal height cards in each row */
        .row {
            display: flex;
            flex-wrap: wrap;
        }
        
        .row > .col-lg-4, .row > .col-md-6 {
            display: flex;
        }
        
        .product-card, .service-card {
            width: 100%; /* Make cards fill the column */
        }
/* end of home page css */