    body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            background-color: #f8f9fa;
        }

        .hero-section {
            background: linear-gradient(rgba(0, 0, 0, 0.6),
                    rgba(0, 0, 0, 0.6)),
                url('https://static.dubizzle.com/frontend-web/listings/assets/homepage/jobs-homepage.jpg') center/cover no-repeat;
            color: #fff;
            text-align: center;
            padding: 100px 20px;
            /* more height */
            min-height: 15vh;
            /* responsive height */
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 0 0 12px 12px;
        }

        .hero-section h1 {
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 15px;
        }

        .hero-section p.lead {
            font-size: 1.2rem;
            margin-bottom: 30px;
            opacity: 0.9;
        }

        .search-box {
            max-width: 700px;
        }

        .search-box .form-control {
            border-radius: 50px 0 0 50px;
            padding-left: 20px;
        }

        .search-box .btn {
            border-radius: 0 50px 50px 0;
            padding: 0 25px;
        }


        .category-card img {
            border-top-left-radius: .5rem;
            border-top-right-radius: .5rem;
            height: 180px;
            /* object-fit: cover; */
        }

        .category-card .card-body {
            text-align: center;
        }

        .qualification-card {
            border: 1px solid #e9ecef;
            border-radius: .75rem;
            padding: 20px;
            text-align: center;
            background: #fff;
            transition: 0.3s;
        }

        .qualification-card:hover {
            box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
        }
