
        body {
            background: #f7f9ff;
            overflow: auto;
        }

        .container_div {
            max-width: 500px;
            margin: 0 auto;
            padding: 20px;
            overflow-y: auto;
        }

        .container_main_div {
            height: 1000px;
            overflow: auto;
        }

        .heading_tile {
            text-align: center;
        }

        .help_desk_form_main_div {
            display: flex;
            flex-direction: column;
            gap: 10px;
        }

        .help_desk_input_container {
            position: relative;
            width: 100%;
        }

        .help_desk_input_container i {
            position: absolute;
            top: 50%;
            left: 10px;
            transform: translateY(-50%);
            color: gray;
        }

        .help_desk_input_container input {
            width: 100%;
            padding-left: 35px;
            height: 50px;
            font-size: 16px;
            border: 2px solid rgb(168, 168, 168);
            border-radius: 5px;
        }

        .hekp_desk_submit_button {
            width: 100%;
            padding: 8px;
            background-color: #2196f3;
            color: white;
            border: none;
            border-radius: 40px;
            font-size: 16px;
            cursor: pointer;
            transition: 0.3s;
        }

        .hekp_desk_submit_button:hover {
            background-color: #1976d2;
        }

        /* Help desk icon section */
        .help_desk_icon_main_div {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            justify-content: center;
            margin-top: 30px;
        }

        .help_desk_icon_div {
            position: relative;
            padding: 5px;
            display: flex;
            flex-direction: column;
            gap: 5px;
            border-radius: 6px;
            cursor: pointer;
            transition: 0.3s;
            text-decoration: none;
        }

        .help_desk_icon_div img {
            width: 80px;
            height: 80px;
            cursor: pointer;
            transition: transform 0.3s, border 0.3s;
        }

        /* Selected state */
        .help_desk_icon_div.selected img {
            transform: scale(0.99);
            border: 3px solid rgb(85, 82, 82);
            padding: 4px;
            border-radius: 10px;
        }

        .help_desk_icon_div.selected::after {
            content: '';
            display: none;
        }

        /* Warning text */
        .service_warning {
            position: absolute;
            top: 50%;
            left: 40%;
            color: tomato;
            font-size: larger;
        }

        /* Modal styles */
        .custom-modal {
            display: none;
            position: fixed;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 400px;
            height: 150px;
            background-color: white;
            box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.4);
            border-radius: 10px;
            padding: 20px;
            z-index: 9999;
            text-align: center;
        }

        .custom-modal h5 {
            margin-top: 20px;
        }

        .modal-close {
            position: absolute;
            top: 5px;
            right: 10px;
            cursor: pointer;
            font-weight: bold;
            font-size: 18px;
        }

        .modal-backdrop {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.3);
            z-index: 9998;
        }
/* feedback stars */
         .star {
        font-size: 2rem; /* Increase size, adjust as needed */
        cursor: pointer;
        color: #ccc;
        transition: color 0.3s;
    }

    .star:hover,
    .star.selected {
        color: gold;
    }
