.banner {
    width: 100%;
    height: 160px;
    background: url("../assets/images/header-footer-images/abisy-breadcum-background.png") center/cover no-repeat;
    position: relative;
}


:root {
    --header-gradient: linear-gradient(to right, #d4b45c, #a45a1abe, #5a2a00);
    --bg-gradient: linear-gradient(to bottom, #f2d6a0, #d4aa6a, #b07c3a);
    --card-bg: linear-gradient(145deg, #fdf3e7, #f3e0c3);
    --text-dark: #1a0b05;
    --text-light: #fdf3e7;
    --saffron: #d97706;
    --gold: #b8860b;
}

/* ===== CATEGORY HEADING ===== */
.category-title{
    background: var(--header-gradient);
    color: var(--text-light);
    text-align: center;
    padding: 12px;
    border-radius: 10px;
    font-weight: 700;
    margin-bottom: 30px;
}

/* ===== CARD ===== */
.profile-card{
    background: var(--card-bg);
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0,0,0,.25);
    height: 100%;
    display: flex;
    flex-direction: column;   /* 👈 IMPORTANT */
    transition: transform .3s ease;
}

.profile-card:hover{
    transform: translateY(-6px);
}

/* TOP STRIP */
.card-top{
    background: var(--header-gradient);
    height: 70px;
}

/* PHOTO */
.profile-photo{
    width: 140px;
    height: 140px;
    margin: -70px auto 12px;
    border-radius: 50%;
    background: #fff;
    padding: 4px;
    border: 3px solid var(--gold);
}
.profile-photo img{
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
}

.text-avatar {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: linear-gradient(135deg, #d97706, #b8860b);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 46px;
    font-weight: 700;
    box-shadow: 0 4px 10px rgba(0,0,0,0.25);
}
/* BODY */
.card-body-custom{
    text-align: center;
    padding: 10px 15px 15px;
    flex-grow: 1;              /* 👈 content jitna bhi ho */
}
.card-body-custom h2{
    font-size: 18px;
    font-weight: 700;
    color: var(--text-dark);
}
.card-body-custom h3{
    font-size: 15px;
    font-weight: 600;
    color: var(--saffron);
}
.card-body-custom p{
    font-size: 14px;
    line-height: 1.5;
}

/* CONTACT (FIXED AT BOTTOM) */
.contact-bar{
    background: #fff;
    min-height: 64px;          /* 👈 FIXED HEIGHT */
    padding: 8px 10px;
    display: flex;
    flex-direction: column;
    justify-content: center;  /* center content vertically */
    align-items: center;
    margin-top: auto;         /* stick to bottom */
    position: relative;
}
/* BORDER LINE */
.contact-bar::before{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--gold);
}
/* LINKS */
.contact-bar a{
    font-size: 13px;
    color: var(--text-dark);
    text-decoration: none;
    line-height: 1.4;
}
.contact-bar a i{
    color: var(--gold);
    margin-right: 6px;
}
.contact-bar a:hover{
    color: var(--saffron);
}