/* CARD */
.hall-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: 0.3s;
    margin-bottom: 25px;
}

.hall-card:hover {
    transform: translateY(-5px);
}

/* IMAGE */
.hall-img {
    position: relative;
}

.hall-img img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

/* PRICE BADGE */
.hall-price {
    position: absolute;
    bottom: 10px;
    left: 10px;
    background: #ff5a5f;
    color: #fff;
    padding: 6px 12px;
    border-radius: 5px;
    font-size: 14px;
    font-weight: bold;
}

/* CONTENT */
.hall-content {
    padding: 15px;
}

.hall-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
}

.hall-title a {
    text-decoration: none;
    color: #333;
}

.hall-title a:hover {
    color: #ff5a5f;
}

/* LOCATION */
.hall-location {
    font-size: 14px;
    color: #777;
    margin-bottom: 10px;
}

/* FEATURES */
.hall-features {
    display: flex;
    justify-content: space-between;
    font-size: 13px;
    color: #555;
    margin-bottom: 10px;
}

.hall-features span {
    display: block;
}

/* BUTTONS */
.hall-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.hall-actions a {
    text-decoration: none;
    font-size: 13px;
    padding: 6px 10px;
    border-radius: 4px;
}

.btn-details {
    background: #007bff;
    color: #fff;
}

.btn-compare {
    border: 1px solid #ccc;
    color: #333;
}

.btn-details:hover {
    background: #0056b3;
}

.btn-compare:hover {
    background: #f2f2f2;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .hall-img img {
        height: 180px;
    }
}
        .profile-section{
            padding:0px 0;
        }

        .profile-card{
            background:#fff;
            border-radius:18px;
            overflow:hidden;
            box-shadow:0 5px 20px rgba(0,0,0,0.08);
        }

        /* LEFT SIDE */

        .profile-left{
            background:linear-gradient(135deg,#0d6efd,#0a58ca);
            color:#fff;
            text-align:center;
            padding:40px 25px;
            height:100%;
        }

        .profile-left img{
            width:180px;
            height:180px;
            border-radius:50%;
            object-fit:cover;
            border:6px solid rgba(255,255,255,0.3);
        }

        .profile-left h2{
            margin-top:20px;
            font-weight:700;
        }

        .designation{
            font-size:18px;
            margin-top:5px;
            opacity:0.9;
        }

        .verified{
            margin-top:12px;
            display:inline-block;
            background:white;
            padding:7px 18px;
            border-radius:30px;
            font-size:14px;
            font-weight:600;
        }

        .social-links{
            margin-top:25px;
        }

        .social-links a{
            width:40px;
            height:40px;
            line-height:40px;
            text-align:center;
            border-radius:50%;
            background:rgba(255,255,255,0.15);
            color:#fff;
            display:inline-block;
            margin:0 5px;
            transition:0.3s;
        }

        .social-links a:hover{
            background:#fff;
            color:#0d6efd;
        }

        /* RIGHT SIDE */

        .profile-right{
            padding:40px;
        }

        .section-title{
            font-size:24px;
            font-weight:700;
            margin-bottom:20px;
            color:#222;
        }

        .info-box{
            background:#f8f9fa;
            border-radius:12px;
            padding:18px;
            margin-bottom:18px;
        }

        .info-box h5{
            font-size:16px;
            font-weight:700;
            margin-bottom:10px;
            color:#0d6efd;
        }

        .info-box p{
            margin:0;
            color:#555;
            line-height:1.7;
        }

        .details-list{
            display:grid;
            grid-template-columns:repeat(2,1fr);
            gap:15px;
        }

        .detail-item{
            background:#f8f9fa;
            padding:15px;
            border-radius:12px;
        }

        .detail-item i{
            color:#0d6efd;
            margin-right:8px;
        }

        .detail-item strong{
            display:block;
            margin-bottom:5px;
            color:#222;
        }

        .btn-contact{
            margin-top:25px;
            padding:12px 30px;
            border-radius:8px;
            background:#0d6efd;
            color:#fff;
            text-decoration:none;
            display:inline-block;
            font-weight:600;
            transition:0.3s;
        }

        .btn-contact:hover{
            background:#0b5ed7;
            color:#fff;
        }

        @media(max-width:768px){

            .details-list{
                grid-template-columns:1fr;
            }

            .profile-right{
                padding:25px;
            }

        }
.profile-left{
    background:#fff;
    padding:30px 20px;
    border-radius:15px;
    text-align:center;
    box-shadow:0 5px 20px rgba(0,0,0,0.08);
    margin-bottom:30px;
}

.profile-img-box{
    position:relative;
    display:inline-block;
}

.profile-img-box img{
    width:180px;
    height:180px;
    border-radius:50%;
    object-fit:cover;
    border:5px solid #f5f5f5;
}

.verified-badge{
    position:absolute;
    bottom:10px;
    right:10px;
    background:#0d6efd;
    color:#fff;
    width:35px;
    height:35px;
    line-height:35px;
    border-radius:50%;
    font-size:16px;
}

.profile-left h2{
    margin-top:20px;
    font-size:28px;
    font-weight:700;
    color:#222;
}

.designation{
    color:#ff6600;
    font-size:17px;
    font-weight:600;
    margin-top:8px;
}

.profile-stats{
    display:flex;
    justify-content:center;
    gap:15px;
    margin-top:20px;
}

.stat-box{
    background:#f8f9fa;
    padding:10px 18px;
    border-radius:10px;
    font-size:15px;
    font-weight:600;
    color:#333;
}

.stat-box i{
    color:#ff6600;
    margin-right:5px;
}

.verified{
    margin-top:18px;
    color:green;
    font-weight:600;
    font-size:15px;
}

.social-links{
    margin-top:25px;
}

.social-links a{
    width:42px;
    height:42px;
    line-height:42px;
    display:inline-block;
    background:#f3f3f3;
    color:#333;
    border-radius:50%;
    margin:0 5px;
    transition:0.3s;
    font-size:16px;
}

.social-links a:hover{
    background:#0d6efd;
    color:#fff;
}
.article-card{
    text-align:left;
}

.article-title{
    font-size:20px;
    font-weight:700;
    color:#222;
    margin-bottom:12px;
    line-height:30px;
}

.article-title i{
    color:#007bff;
    margin-right:10px;
}

.article-professor{
    font-size:15px;
    color:#666;
    margin-bottom:20px;
}

.article-professor i{
    color:#007bff;
    margin-right:8px;
}

/* MODAL */
.modal-content{
    border-radius:20px;
    overflow:hidden;
}

.modal-header{
    background:linear-gradient(135deg,#007bff,#00c6ff);
    color:#fff;
    padding:20px 25px;
}

.modal-title{
    font-size:24px;
    font-weight:700;
}

.modal-header .close{
    color:#fff;
    opacity:1;
    font-size:30px;
}

.modal-body{
    padding:30px;
}

.modal-body p{
    font-size:16px;
    line-height:30px;
    color:#555;
    margin-bottom:20px;
}

.article-author{
    font-size:16px;
    font-weight:600;
    color:#007bff;
    margin-bottom:20px;
}

.modal-footer{
    padding:20px;
    border-top:1px solid #eee;
}
.publication-sidebar{
    background:#fff;
    padding:20px;
    border-radius:10px;
    box-shadow:0 2px 10px rgba(0,0,0,0.1);
}

.sidebar-title{
    font-size:22px;
    margin-bottom:20px;
    color:#222;
    border-bottom:2px solid #eee;
    padding-bottom:10px;
}

.publication-item{
    border:1px solid #eee;
    padding:15px;
    margin-bottom:15px;
    border-radius:8px;
    transition:0.3s;
}

.publication-item:hover{
    box-shadow:0 3px 12px rgba(0,0,0,0.1);
}

.book-title{
    font-size:18px;
    color:#007bff;
    margin-bottom:10px;
}

.book-author,
.book-details{
    margin-bottom:5px;
    color:#555;
}

.view-book-btn{
    display:inline-block;
    margin-top:10px;
    padding:8px 15px;
    background:#007bff;
    color:#fff;
    text-decoration:none;
    border-radius:5px;
}

.view-book-btn:hover{
    background:#0056b3;
}
.award-sidebar{
    background:#fff;
    padding:20px;
    border-radius:10px;
    box-shadow:0 2px 10px rgba(0,0,0,0.1);
}

.sidebar-title{
    font-size:22px;
    margin-bottom:20px;
    color:#222;
    border-bottom:2px solid #eee;
    padding-bottom:10px;
}

.award-item{
    display:flex;
    gap:15px;
    border:1px solid #eee;
    padding:15px;
    margin-bottom:15px;
    border-radius:8px;
    transition:0.3s;
    align-items:flex-start;
}

.award-item:hover{
    box-shadow:0 3px 12px rgba(0,0,0,0.1);
}

.award-icon{
    width:50px;
    height:50px;
    background:#f5f5f5;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:22px;
    color:#f39c12;
}

.award-title{
    font-size:18px;
    margin-bottom:5px;
    color:#007bff;
}

.award-org,
.award-year{
    margin:0;
    color:#555;
    font-size:14px;
}
.project-sidebar{
    background:#fff;
    padding:20px;
    border-radius:10px;
    box-shadow:0 2px 10px rgba(0,0,0,0.1);
}

.sidebar-title{
    font-size:22px;
    margin-bottom:20px;
    color:#222;
    border-bottom:2px solid #eee;
    padding-bottom:10px;
}

.project-item{
    display:flex;
    gap:15px;
    border:1px solid #eee;
    padding:15px;
    margin-bottom:15px;
    border-radius:8px;
    transition:0.3s;
}

.project-item:hover{
    box-shadow:0 3px 12px rgba(0,0,0,0.1);
}

.project-icon{
    width:55px;
    height:55px;
    background:#f5f5f5;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:24px;
    color:#28a745;
}

.project-title{
    font-size:18px;
    margin-bottom:8px;
    color:#007bff;
}

.project-details{
    margin-bottom:5px;
    color:#555;
    font-size:14px;
}
.research-sidebar{
    background:#fff;
    padding:20px;
    border-radius:10px;
    box-shadow:0 2px 10px rgba(0,0,0,0.1);
}

.sidebar-title{
    font-size:22px;
    margin-bottom:20px;
    color:#222;
    border-bottom:2px solid #eee;
    padding-bottom:10px;
}

.research-item{
    display:flex;
    gap:15px;
    border:1px solid #eee;
    padding:15px;
    margin-bottom:15px;
    border-radius:8px;
    transition:0.3s;
    align-items:center;
}

.research-item:hover{
    box-shadow:0 3px 12px rgba(0,0,0,0.1);
}

.student-photo img{
    width:70px;
    height:70px;
    border-radius:50%;
    object-fit:cover;
}

.student-name{
    font-size:18px;
    margin-bottom:8px;
    color:#007bff;
}

.research-details{
    margin-bottom:5px;
    color:#555;
    font-size:14px;
}
.prop_1i {
  text-align: center;
  background-color: white;
  padding: 15px;
  border: 1px solid #ff9595 !important;
}
.category-box {
    background: #fff;
    padding: 25px 20px;
    text-align: center;
    border-radius: 12px;
    margin-bottom: 25px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    height: 100%;
}

.category-box:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

/* Icon circle */
.category-box .icon {
    width: 70px;
    height: 70px;
    background: #007bff;
    color: #fff;
    font-size: 28px;
    line-height: 70px;
    border-radius: 50%;
    margin: 0 auto 15px;
}

/* Heading */
.category-box h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
}

/* Text */
.category-box p {
    font-size: 14px;
    color: #666;
    min-height: 50px;
}

/* Link */
.category-box a {
    display: inline-block;
    margin-top: 10px;
    color: #007bff;
    font-weight: 500;
    text-decoration: none;
}

.category-box a:hover {
    text-decoration: underline;
}

/* Responsive Fix */
@media (max-width: 768px) {
    .category-box {
        margin-bottom: 20px;
    }
}
.section-title {
    font-size: 26px;
    font-weight: 700;
    text-transform: uppercase;
    position: relative;
    display: inline-block;
    margin-bottom: 20px;
}

.section-title span {
    color: #333;
    padding-bottom: 5px;
    display: inline-block;
    border-bottom: 3px solid #007bff;
}

/* Optional underline effect */
.section-title::after {
    content: "";
    width: 60px;
    height: 3px;
    background: #007bff;
    position: absolute;
    left: 0;
    bottom: -8px;
}

    /* PROFILE RIGHT SECTION */
.profile-right{
    background:#fff;
    padding:30px;
    border-radius:20px;
    box-shadow:0 10px 47px rgba(226, 10, 233, 0.98);
    position:relative;
    overflow:hidden;
}

/* TOP DECORATION */
.profile-right::before{
    content:"";
    position:absolute;
    top:-60px;
    right:-60px;
    width:180px;
    height:180px;
    background:linear-gradient(135deg,#007bff,#00c6ff);
    border-radius:50%;
    opacity:0.15;
}

.profile-right::after{
    content:"";
    position:absolute;
    bottom:-70px;
    left:-70px;
    width:200px;
    height:200px;
    background:linear-gradient(135deg,#ff512f,#dd2476);
    border-radius:50%;
    opacity:0.10;
}

/* SECTION TITLE */
.section-title{
    font-size:24px;
    font-weight:700;
    margin-bottom:20px;
    color:#222;
    position:relative;
    padding-left:18px;
}

.section-title::before{
    content:"";
    position:absolute;
    left:0;
    top:5px;
    width:6px;
    height:28px;
    background:#007bff;
    border-radius:10px;
}

/* TABS */
.profile-tabs{
    border:none;
    margin-bottom:30px;
    display:flex;
    gap:10px;
}

.profile-tabs li{
    float:none;
}

.profile-tabs li a{
    border:none !important;
    background:#f4f7ff;
    color:#333;
    font-weight:600;
    padding:12px 25px;
    border-radius:50px;
    transition:0.3s;
}

.profile-tabs li.active a,
.profile-tabs li a:hover{
    background:linear-gradient(135deg,#007bff,#00c6ff) !important;
    color:#fff !important;
    box-shadow:0 5px 15px rgba(0,123,255,0.3);
}

/* INFO BOX */
.info-box{
    background:#f9fbff;
    padding:25px;
    border-radius:15px;
    border-left:5px solid #007bff;
    margin-bottom:30px;
}

.info-box p{
    color:#555;
    line-height:28px;
    font-size:16px;
}

/* DETAILS */
.details-list{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:20px;
}

.detail-item{
    background:#fff;
    border-radius:15px;
    padding:20px;
    border:1px solid #eee;
    transition:0.3s;
    position:relative;
    overflow:hidden;
}

.detail-item:hover{
    transform:translateY(-5px);
    box-shadow:0 10px 25px rgba(0,0,0,0.08);
}

.detail-item strong{
    display:block;
    margin-bottom:10px;
    color:#222;
    font-size:16px;
}

.detail-item i{
    color:#007bff;
    margin-right:8px;
    font-size:18px;
}

/* CONTACT BUTTON */
.btn-contact{
    display:inline-block;
    margin-top:30px;
    background:linear-gradient(135deg,#007bff,#00c6ff);
    color:#fff;
    padding:14px 35px;
    border-radius:50px;
    text-decoration:none;
    font-weight:600;
    transition:0.3s;
    box-shadow:0 8px 20px rgba(0,123,255,0.25);
}

.btn-contact:hover{
    color:#fff;
    text-decoration:none;
    transform:translateY(-3px);
    box-shadow:0 10px 25px rgba(0,123,255,0.4);
}

/* MOBILE */
@media(max-width:768px){

    .profile-right{
        padding:20px;
    }

    .profile-tabs{
        flex-wrap:wrap;
    }

    .profile-tabs li a{
        padding:10px 18px;
        font-size:14px;
    }

    .section-title{
        font-size:20px;
    }

}