.advisory-card{
     height: 320px!important;
    background-color: #fff;
    box-shadow: rgba(0, 0, 0, 0.02) 0px 1px 3px 0px, rgba(27, 31, 35, 0.15) 0px 0px 0px 1px;
    border-top: 0.1px solid #2f8f4e;;
    border-bottom: 0.1px solid #2f8f4e;
    margin-top: 10px;
    position: relative;
    background: #fff;
    border-radius: 10px;
    padding: 15px 18px!important;
    text-align: center;
    overflow: hidden;
    transition: 0.4s ease;
    border: 1px solid #f3f3f3;
    margin-bottom: 10px;
}
.advisory-card::before{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%!important;
    background:linear-gradient(180deg, #2f8f4e, #A9CF46);
}
.advisory-card:hover{
    transform: translateY(-7px);
    box-shadow:
        0 15px 30px rgba(47,143,78,0.15);
}

.img-area img{
    width: 115px;
    height: 115px;
    /*object-fit: cover;*/
    border-radius: 14px;
    padding: 4px;
    background: #fff;
    border: 2px solid rgba(47,143,78,0.15);
    transition: 0.4s ease;
}

.advisory-card:hover .img-area img{
    transform: scale(1.05);
    border-color: #A9CF46;
}
.advisory-card h6{
    font-size: 15.5px;
    font-weight: 700;
    color: #222;
    /* margin-bottom: 10px; */
    line-height: 1.4;
}

#advisoryname{
    width: fit-content;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(47,143,78,0.08);
    color: #2f8f4e;
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    border: 1px solid rgba(47,143,78,0.12);
    margin: 0 auto;
}
.advisory-card h4.text-center{
    width: fit-content;
    display: inline-flex;
    justify-content: center;
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 700;
    height: auto!important;
    letter-spacing: 1px;
    text-transform: uppercase;
    border: 1px solid rgba(47,143,78,0.12);
    margin: 0 auto;
}
.advisory-card:hover h4.text-center{
    background:linear-gradient(90deg, #2f8f4e, #A9CF46);
    color: #fff;
}

@media(max-width:768px){
    .advisory-card{
        padding: 20px 14px;
    }
    .img-area img{
        width: 95px;
        height: 95px;
    }
    .advisory-card h6{
        font-size: 18px;
    }
    .advisory-card h4.text-center{
        font-size: 11px !important;
    }
}
.advisory-card .img-area{
    padding: 15px!important;
}
.advisory-card .img-area img{
    border-radius: 10px;
    display: block;
    margin: auto;
    border-radius: 50%;
    border: 2px solid #2f8f4e;
}
.advisory-card h4{
    background-color: #2f8f4e;
    padding: 3px 10px!important; 
    display: block!important; 
    border-radius: 4px; 
    text-align: center;
    font-size: 13px!important;
    letter-spacing: 1.5px!important;
    color: #fff;
    box-shadow: rgba(17, 17, 26, 0.05) 0px 1px 0px, rgba(17, 17, 26, 0.1) 0px 0px 8px;
    text-transform: uppercase;
}
.advisory-card span{
    color: #ccc;
    font-size: 14px;
}


.abstract-date{
    margin-top: 50px;
}
.abstract-date span{
    background-color: #2f8f4e;
    padding: 15px 35px;
    color: #fff;
    letter-spacing: 1px;
    font-weight: bold;
    border-radius: 5px;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 13px 27px -5px, rgba(0, 0, 0, 0.3) 0px 8px 16px -8px;
}
.abstract-table table thead tr th{
    background-color: #ccc;
    text-align: center;
}
.abstract-btn button{
    margin-left: 25px;
}
.invited-speaker thead tr th{
    text-align: center;
}
.invited-speaker table tbody tr td{
    text-align: center;
}

#advisoryname{
    margin-top: -10px!important;
}





/* =========================
   Speaker Card Design
========================= */

.speekar-card{
    background: #ffffff;
    border-radius: 18px;
    overflow: hidden;
    position: relative;
    transition: all 0.35s ease;
    border: 1px solid rgba(47, 143, 78, 0.12);
    box-shadow: 0 6px 18px rgba(0,0,0,0.06);
}

.speekar-card::before{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg,#2f8f4e,#57c785);
}

.speekar-card:hover{
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.12);
}

/* Inner Card */
.speaker-card{
    background: transparent;
    border-radius: 18px;
}

/* =========================
   Speaker Image
========================= */

.speaker-img{
    width: 120px;
    height: 120px;
    object-fit: cover;
    border-radius: 16px;
    border: 4px solid #fff;
    box-shadow: 0 8px 18px rgba(47,143,78,0.18);
    transition: 0.4s ease;
}

.speekar-card:hover .speaker-img{
    transform: scale(1.05);
}

/* =========================
   Speaker Info
========================= */

.speaker-info{
    padding-left: 18px;
}

.speaker-name{
    font-size: 20px;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 10px;
    line-height: 1.4;
}

.speaker-role{
    display: inline-block;
    background: rgba(47,143,78,0.08);
    color: #2f8f4e;
    padding: 6px 14px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 12px;
    border: 1px solid rgba(47,143,78,0.12);
}

.speaker-topic{
    font-size: 15px;
    line-height: 1.8;
    color: #6b7280;
    margin-top: 10px;
}

/* =========================
   See More Button
========================= */

.see-more1{
    margin-top: 25px;
}

.see-more1 a{
    text-decoration: none;
    background: #2f8f4e;
    color: #fff;
    padding: 12px 24px;
    border-radius: 40px;
    font-size: 14px;
    font-weight: 600;
    transition: 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 6px 16px rgba(47,143,78,0.25);
}

.see-more1 a:hover{
    background: #256f3c;
    transform: translateY(-3px);
    color: #fff;
}

/* =========================
   Responsive
========================= */

@media(max-width:768px){
    .speaker-info{
        padding-left: 0;
        text-align: center;
        margin-top: 20px;
    }
    .speaker-name{
        font-size: 20px;
    }
    .speaker-role{
        font-size: 13px;
    }
    .speaker-img{
        width: 100px;
        height: 100px;
    }
    .see-more1{
        text-align: center;
        float: none !important;
    }
}