/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Sep 09 2026 | 05:22:04 */
/* =====================================================
   SEARCH + FILTER
===================================================== */

.directory-filter {
    display: flex !important;
    align-items: center;
    gap: 18px;
    width: 100%;
    margin-bottom: 14px;
}

.search-box,
.district-select {
    position: relative;
    width: calc(50% - 9px) !important;
    flex: 0 0 calc(50% - 9px);
    height: 48px;
}


/* Input */

.search-box input,
.district-select select {
    display: block;
    width: 100% !important;
    height: 48px;
    box-sizing: border-box;
    border: 1px solid #d1d5db;
    border-radius: 10px;
    background: #ffffff;
    color: #111827;
    font-size: 15px;
    outline: none;
    transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}

.search-box input {
    padding: 0 16px 0 43px;
}

.search-box input::placeholder {
    color: #6b7280;
}


/* Select */

.district-select select {
    padding: 0 18px;
    cursor: pointer;
}


/* Focus */

.search-box input:focus,
.district-select select:focus {
    border-color: #111827;
    box-shadow: 0 0 0 3px rgba(17, 24, 39, .07);
}


/* =====================================================
   SEARCH ICON
===================================================== */

.search-icon {
    position: absolute;
    left: 15px;
    top: 50%;
    width: 15px;
    height: 15px;
    border: 2px solid #111827;
    border-radius: 50%;
    transform: translateY(-50%);
    z-index: 2;
}

.search-icon::after {
    content: "";
    position: absolute;
    width: 7px;
    height: 2px;
    right: -5px;
    bottom: -3px;
    background: #111827;
    transform: rotate(45deg);
    border-radius: 2px;
}




.member-section {
    width: 100%;
    padding: 20px 0;
    max-width: 1240px;
    margin: auto;
}

.member-grid {
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

/* =================================
   MEMBER CARD
================================= */

.member-card {
    position: relative;
    background: #ffffff;
    border: 1px solid #dce3eb;
    border-radius: 17px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(15, 23, 42, 0.08);
    transition: all 0.3s ease;
}

/* =================================
   TOP AREA
================================= */

.card-top {
    height: 100px;
    position: relative;
    background-color: #101d38;
	background-image: repeating-linear-gradient(135deg, rgba(255,255,255,0.035) 0px, rgba(255,255,255,0.035) 1px, transparent 1px, transparent 10px);
}


/* =================================
   ACTIVE BADGE
================================= */

.active-badge {
    position: absolute;
    right: 15px;
    top: 16px;
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 6px 11px;
    background: #f1f5f9;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.7px;
    color: #28558e;
}

.active-badge span {
    width: 6px;
    height: 6px;
    background: #0b9d63;
    border-radius: 50%;
    display: inline-block;
}


/* =================================
   CONTENT
================================= */

.member-content {
    position: relative;
    padding: 42px 21px 20px;
}


/* =================================
   PROFILE IMAGE
================================= */

.member-image-wrap {
    position: absolute;
    left: 21px;
    top: -61px;
    width: 98px;
    height: 98px;
    padding: 6px;
    background: #ffffff;
    border-radius: 17px;
    box-shadow: 0 5px 12px rgba(15, 23, 42, 0.15);
}

.member-image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
    display: block;
}

.online-dot {
    position: absolute;
    right: -2px;
    bottom: -2px;
    width: 16px;
    height: 16px;
    background: #0aa56b;
    border: 3px solid #ffffff;
    border-radius: 50%;
}


/* =================================
   MEMBER NAME
================================= */

.member-name {
    font-size: 20px;
    line-height: 1.25;
    font-weight: 700;
    color: #0b1730;
    margin-bottom: 5px;
}

.member-designation {
    font-size: 13px;
    color: #1959a8;
    font-weight: 500;
    margin-bottom: 6px;
}

.member-company {
    font-size: 12.5px;
    color: #5b7392;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-bottom: 15px;
}


/* =================================
   MEMBER ID
================================= */

.member-id {
    display: inline-flex;
    align-items: center;
    background: #e5f2ff;
    color: #14569c;
    border-radius: 20px;
    padding: 5px 10px;
    font-size: 9px;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-bottom: 18px;
}


/* =================================
   INFORMATION GRID
================================= */

.member-info {
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 12px;
    row-gap: 13px;
    padding-bottom: 19px;
    border-bottom: 1px solid #dce3eb;
}

.info-item {
    min-width: 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.info-icon {
    flex: 0 0 30px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #eaf4ff;
    border-radius: 9px;
    color: #1763b6;
    font-size: 14px;
}

.info-text {
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.info-text h5 {
    font-size: 14px;
    font-weight: 600;
    color: #617894;
}

.info-text strong {
    font-size: 14px;
    font-weight: 600;
    color: #14294b;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}


/* =================================
   FOOTER
================================= */
.member-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 13px;
    padding-top: 18px;
}


/* =================================
   QR
================================= */

.qr-box {
	height: 60px;
    padding: 4px;
    box-sizing: border-box;
    background: #ffffff;
    border: 1px solid #d8e1eb;
    border-radius: 8px;
    overflow: hidden;
}

.qr-box img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: contain;
}

/* =================================
   VALIDITY
================================= */

.validity {
    min-width: 0;
    flex: 1;
}

.validity > span {
    display: block;
    font-size: 8px;
    line-height: 1.5;
    letter-spacing: 1px;
    color: #607793;
    margin-bottom: 5px;
}

.validity p {
    display: flex;
    align-items: center;
    gap: 5px;
    white-space: nowrap;
    font-size: 10px;
    color: #14294b;
}

.validity p i {
    color: #1559a5;
}


/* =================================
   PROFILE BUTTON
================================= */

.profile-btn {
    flex: 0 0 auto;
    height: 37px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 0 14px;
    background: #101d38;
    color: #ffffff;
    border-radius: 14px;
    text-decoration: none;
    font-size: 11px;
    font-weight: 600;
    box-shadow: 0 4px 8px rgba(15, 23, 42, 0.15);
    transition: all 0.25s ease;
}

.profile-btn i {
    font-size: 13px;
    transition: transform 0.25s ease;
}

.profile-btn:hover {
    background: #1959a8;
    color: #ffffff;
}

.profile-btn:hover i {
    transform: translateX(3px);
}


/* =================================
   TABLET
================================= */

@media (max-width: 1000px) {

    .member-grid {
        grid-template-columns: repeat(2, 1fr);
    }

}


/* =================================
   MOBILE
================================= */

@media (max-width: 650px) {

    .member-section {
        padding: 20px 14px;
    }

    .member-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .member-card {
        max-width: 500px;
        width: 100%;
        margin: 0 auto;
    }

}


/* =================================
   SMALL MOBILE
================================= */

@media (max-width: 420px) {

    .member-content {
        padding-left: 17px;
        padding-right: 17px;
    }

    .member-image-wrap {
        left: 17px;
    }

    .member-info {
        grid-template-columns: 1fr;
    }

    .member-footer {
        gap: 9px;
    }

    .profile-btn {
        padding: 0 11px;
        gap: 7px;
    }

    .member-name {
        font-size: 19px;
    }

}

