* {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
        font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    }

    body {
        background-color: #f5f5f5;
        color: #333;
        line-height: 1.6;
    }

    /* Header styles */
    header {
        background-color: #2c3e50;
        color: white;
        padding: 1rem 0;
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    }

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

    .site-name {
        font-size: 2rem;
        font-weight: bold;
        margin-bottom: 1rem;
    }

    .site-keyword {
        font-size: 0.7rem;
        font-style: italic;
        font-family: cursive;
    }

    .nav-links {
        display: flex;
        margin-bottom: 1rem;
    }

    .nav-links a {
        color: white;
        text-decoration: none;
        margin-right: 1.5rem;
        padding: 0.5rem 0;
        position: relative;
        font-weight: 500;
    }

    .nav-links a:after {
        content: '';
        position: absolute;
        width: 0;
        height: 2px;
        bottom: 0;
        left: 0;
        background-color: white;
        transition: width 0.3s;
    }

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

    .search-container {
        display: flex;
        max-width: 600px;
    }

    .search-container input {
        flex: 1;
        padding: 0.7rem;
        border: none;
        border-radius: 4px 0 0 4px;
        font-size: 1rem;
    }

    .search-container button {
        /* background-color: #e74c3c; */
        background: linear-gradient(135deg, #6f6dea 0%, #e74c3c 100%);
        color: white;
        border: none;
        padding: 0 1.5rem;
        border-radius: 0 4px 4px 0;
        cursor: pointer;
        font-weight: bold;
    }

    .search-container button:hover {
        background: #c0392b;
        background: linear-gradient(135deg, #e74c3c 0%, #6f6dea 100%);
    }

    /* Main content styles */
    main {
        max-width: 1200px;
        margin: 2rem auto;
        padding: 0 20px;
    }

    .who-sells {
    max-width: 1100px;
    margin: 22px 0 8px;
    padding: 0 ;
    }

    .who-sells-title {
    font-family: inherit;
    font-size: 1.25rem; /* slightly smaller than Featured Brands title */
    margin: 0 0 6px;
    color: #2c3e50;
    font-weight: 700;
    }

    .who-sells-note {
    margin: 0;
    color: #6d6d6d;
    font-size: 0.95rem;
    line-height: 1.3;
    }


    .page-title {
        font-size: 1.8rem;
        margin-bottom: 1.5rem;
        color: #2c3e50;
        border-bottom: 2px solid #e74c3c;
        padding-bottom: 0.5rem;
        display: inline-block;
    }

    .business-grid {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
        gap: 1.5rem;
    }

    .business-card {
        background-color: white;
        border-radius: 8px;
        overflow: hidden;
        box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
        transition: transform 0.3s, box-shadow 0.3s;
    }

    .business-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    }

    .card-header {
        padding: 1rem;
        background-color: white;
        color: black;
    }

    .business-name {
        font-size: 1.3rem;
        font-weight: bold;
    }

    .institution-subtitle {
        font-size: 0.85rem;
        color: #6b7280;
        font-weight: 400;
        margin-top: 0.25rem;
        display: block;
    }

    .category-tag {
        display: inline-block;
        padding: 0.3rem 0.6rem;
        border-radius: 20px;
        font-size: 0.8rem;
        margin-top: 0.5rem;
    }

    .institution-tag {
        display: inline-block;
        padding: 0.3rem 0.6rem;
        border-radius: 20px;
        font-size: 0.8rem;
        margin-top: 0.5rem;
        margin-left: 0.5rem;
        background-color: #7b7b7b43;
        color: #333;
    }

    .institution-info {
        display: flex;
        align-items: center;
        gap: 0.5rem;
        font-size: 0.9rem;
        color: #6b7280;
        margin-bottom: 0.75rem;
        padding-bottom: 0.75rem;
        border-bottom: 1px solid #e5e7eb;
    }

    .institution-info::before {
        content: '🎓';
        font-size: 1.1rem;
    }

    .product .category-tag{
        background-color: #6f6dea58;
    }

    .service .category-tag{
        background-color: #9f1c254d;
    }

    .training .category-tag{
        background-color: #7b7b7b43;
    }

    .card-body {
        padding: 1rem;
    }

    .business-links {
        display: flex;
        margin-top: 1rem;
    }

    .business-links a {
        display: inline-block;
        padding: 0.5rem 1rem;
        text-decoration: none;
        border-radius: 4px;
        font-weight: 500;
        text-align: center;
        flex: 1;
        margin: 0 0.3rem;
    }

    .catalogue-link {
        /* background-color: gainsboro; */
        background: linear-gradient(135deg, rgb(242, 240, 240) 0%, gainsboro 100%);
        color: #333;
    }

    .whatsapp-link {
        /* background-color: #37a05e; */
        background: linear-gradient(135deg, #37a05e 0%, #26653c 100%);
        color: white;
    }

    .catalogue-link:hover {
        background: black;
        color: white;
    }

    .whatsapp-link:hover {
        background: #128c7e;
    }

    /* Floating Button */
    .floating-btn {
        position: fixed;
        bottom: 2rem;
        right: 2rem;
        background: linear-gradient(135deg, #6f6dea 0%, #e74c3c 100%);
        color: white;
        padding: 1rem 1.75rem;
        border-radius: 50px;
        font-weight: 700;
        font-size: 1rem;
        box-shadow: 0 4px 15px #6f6dea58;
        /* box-shadow: 0 4px 15px rgba(245, 158, 11, 0.4); */
        z-index: 1000;
        transition: all 0.3s ease;
        text-decoration: none;
        display: flex;
        align-items: center;
        gap: 0.5rem;
    }

    .floating-btn:hover {
        transform: translateY(-3px);
        /* box-shadow: 0 6px 20px rgba(245, 158, 11, 0.6); */
        box-shadow: 0 6px 20px #6f6dea;
        background: linear-gradient(135deg, #e74c3c 0%, #6f6dea 100%);
        /* background: linear-gradient(135deg, #ea8c0f 0%, #f59e0b 100%); */
    }

    .floating-btn::before {
        content: '✨';
        font-size: 1.2rem;
    }

    /* Scroll to top button styles */
        .scroll-to-top {
            position: fixed;
            bottom: 6.5rem;
            right: 3rem;
            background-color: #2c3e50;
            color: white;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
            transition: background-color 0.3s, transform 0.3s;
            font-size: 2rem;
            z-index: 1000;
        }

        .scroll-to-top:hover {
            /* background-color: #6f6dea; */
            transform: scale(1.1);
        }

    /* Responsive styles */
    @media (max-width: 768px) {
        .business-grid {
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        }

        .nav-links {
            flex-wrap: wrap;
        }

        .nav-links a {
            margin-bottom: 0.5rem;
        }

        .floating-btn {
            bottom: 1.5rem;
            right: 1.5rem;
            padding: 0.85rem 1.5rem;
            font-size: 0.9rem;
        }
    }

    @media (max-width: 480px) {
        .business-grid {
            grid-template-columns: 1fr;
        }

        .site-name {
            font-size: 1.5rem;
        }

        .page-title {
            font-size: 1.5rem;
        }

        .floating-btn {
            bottom: 1rem;
            right: 1rem;
            padding: 0.75rem 1.25rem;
            font-size: 0.85rem;
        }

        /* Adjust scroll button size on mobile */
            .scroll-to-top {
                width: 45px;
                height: 45px;
                bottom: 4.8rem;
                right: 2rem;
                font-size:2rem;
            }
    }


