/* Organizer Card Enhancements */
    .org-card {
        transition: all 0.3s cubic-bezier(.25,.8,.25,1);
        border: 1px solid rgba(0,0,0,0.05) !important;
        background: #fff;
    }

    .org-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 15px 35px rgba(0,0,0,0.1) !important;
    }

    .banner-container {
        height: 140px;
        position: relative;
        overflow: visible;
    }

    .profile-img-wrapper {
        position: absolute;
        bottom: -50px;
        left: 50%;
        transform: translateX(-50%);
        z-index: 2;
    }

    .profile-img {
        width: 100px;
        height: 100px;
        border: 5px solid #fff;
        box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        object-fit: cover;
        background: #fff;
    }

    /* Verification Badge Animation */
    .bi-patch-check-fill {
        font-size: 1.1rem;
    }

    /* Modern Search Styling */
    .search-wrapper {
        max-width: 600px;
        margin: 0 auto 3rem auto;
    }

    .search-input-group {
        background: #fff;
        border-radius: 50px;
        padding: 5px 15px;
        box-shadow: 0 4px 15px rgba(0,0,0,0.05);
        border: 1px solid #eee;
    }

    .search-input-group .form-control {
        border: none;
        box-shadow: none;
        padding-left: 10px;
    }

    .search-input-group i {
        color: #adb5bd;
    }

    /* Star Rating Refinement */
    .precise-stars {
        display: inline-block;
        position: relative;
        font-family: FontAwesome; /* Ensure FontAwesome is loaded or use icons */
        color: #e4e4e4;
    }

    .precise-stars-fill {
        position: absolute;
        top: 0;
        left: 0;
        white-space: nowrap;
        overflow: hidden;
        color: #ffc107;
    }