:root {
    --primary: #0077C2;
    /* Logo Blue */
    --accent: #28A745;
    /* Logo Green */
    --bg-color: #F8FBFE;
    --text-primary: #1A3353;
    --text-muted: #5A7184;
    --border-color: #DDE6ED;
    --card-radius: 28px;
    --input-radius: 16px;
}

body {
    background-color: var(--bg-color);
    background-image:
        radial-gradient(circle at 0% 0%, rgba(0, 119, 194, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 100% 100%, rgba(40, 167, 69, 0.03) 0%, transparent 50%);
    color: var(--text-primary);
    font-family: 'Plus Jakarta Sans', sans-serif;
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
}

.page-header {
    padding: 60px 0 40px;
}

.header-title {
    font-size: 52px;
    font-weight: 800;
    line-height: 1.1;
    color: #040404;
    margin-bottom: 20px;
}

.header-title span {
    color: var(--primary);
}

.header-description {
    font-size: 16px;
    color: var(--text-muted);
    border-left: 4px solid var(--accent);
    padding-left: 24px;
}



/* --- FILTERS & INPUTS --- */



.bdrRds{
    border-radius:var(--card-radius) !important;;
}

.header-search-input {
    flex: 1;
    min-width: 120px;
    height: 40px;
    border: none;
    background: transparent;
    font-size: 16px;
    font-weight: 500;
    color: #1a3353;
    outline: none;
    font-family: inherit;
}

.dropdown-trigger span {
    color: #8fa1ab;
    font-size: 16px;
    font-weight: 500;
}

.dropdown-trigger.has-value span {
    display: none;
}

.header-search-input{
    border:none !important;
        padding: 10px 0 !important;
}


.inline-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #e6f4f1;
    color: #066b61;
    padding: 2px 10px;
    border-radius: 100px;
    font-size: 13px;
    font-weight: 600;
    border: 1px solid rgba(6, 107, 97, 0.1);
}

.inline-tag i {
    cursor: pointer;
    font-size: 11px;
}

.btn-primary {
        background-color: #0073ff !important;
    border-color: #0073ff !important;
    font-weight: 500;
    transition: all 0.3s ease;
    padding: 12px 40px !important;
    font-size: 16px;
}

.btn-primary:hover {
    background-color: #0067e4 !important;
    transform: translateY(-2px);
}

.btn-light {
    background-color: #FFFFFF !important;
    border: 1px solid #0073ff !important;
    color: #0073ff !important;
    font-weight: 500;
    font-size: 16px;
    padding: 12px 35px !important;
}

.btn-light:hover {
    background-color: #f0f7f6 !important;
    transform: translateY(-2px);
}

.header-search-input::placeholder {
    color: #8fa1ab;
    opacity: 1;
}




/* --- AWARD LISTTING --- */

.award-card {
    background: #FFFFFF;
    border: none;
    box-shadow: 0 4px 20px rgba(26, 51, 83, 0.04);
    border-radius: var(--card-radius);
    padding: 20px;
    min-height: 410px;
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s ease;
    position: relative;
}

.award-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 119, 194, 0.12);
}

.card-image-box {
    width: 100%;
    aspect-ratio: 1;
    background-color: #E8F4FD;
    border-radius: 20px;
    margin-bottom: 20px;
    
    overflow: hidden;
}

.card-image-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.9;
}

.card-badge {
    position: absolute;
    top:230px;
    right: 18px;
    width: 80px;
    height: 80px;
    background: #187dbf;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 3px solid #FFFFFF;
    box-shadow: 0 4px 12px rgba(40, 167, 69, 0.2);
}

.card-badge i {
    color: #ffffff;
        font-size: 40px;
}

.card-footer {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 0 4px;
}

.card-info h3 {
    font-size: 18px;
    font-weight: 700;
    font-family: 'Outfit', sans-serif;
    color: var(--text-primary);
    margin-bottom: 2px;
    text-transform: capitalize;
}

.card-info p {
    font-size: 13px;
    color: var(--text-muted);
    margin: 0;
    line-height: 19px;
}

.menu-btn {
    background: none;
    border: none;
    color: #CBD5E1;
    padding: 4px;
    transition: color 0.2s;
}

.menu-btn:hover {
    color: var(--primary);
}

.locationAwrd{
    display: flex;
    align-items: end;
    gap: 10px;
    padding-top: 15px;
    color:#858585;
        font-size: 13px;
}

.lcn-icon svg{
    width:11px;
}



/* --- RESPONSIVE --- */

@media (max-width: 1025px) {
    
    .card-badge {
            position: absolute;
        top: 155px;
        right: 17px;
        width: 60px;
        height: 60px;
    }
    
    .card-badge i {
    font-size: 36px;
}
}

@media (max-width: 991px) {
    
    .header-title {
        font-size: 40px;
    }

    .header-description {
        margin-top: 24px;
        max-width: 100%;
    }

    .page-header {
        padding: 50px 0 30px;
    }
}

@media (max-width: 769px) {
    .filter-section {
        padding: 24px;
    }
    
    .card-badge {
    position: absolute;
    bottom: 60px;
    right: 19px;
    width: 70px;
    height: 70px;
    }
    
    .card-badge i {
    font-size: 30px;
}
}

@media (max-width: 426px) {
        .header-title {
            font-size:30px;
        }
        
        .header-description {
    border-left: none;
    padding-left: 0;
}
.page-header{
    margin:0 25px;
}

.header-description {
        margin-top: 0;
    }
    
    .awardsSection{
        margin:15px;
    }
    
    .card-badge {
        position: absolute;
        top: 282px;
        right: 15px;
        width: 90px;
        height: 90px;
    }
    
        .card-badge i {
        font-size: 50px;
    }
}

@media (max-width: 376px) {
        .card-badge {
        position: absolute;
        top: 240px;
        right: 15px;
        width: 80px;
        height: 80px;
    }
