.vc-card{
    display:flex;
    gap:40px;
    align-items:flex-start;
    background:#fff;
    padding:35px;
    border-radius:20px;
    box-shadow:0 10px 35px rgba(0,0,0,0.08);
    margin-top:30px;
}

.vc-image{
    flex:0 0 280px;
}

.vc-image img{
    width:100%;
    border-radius:16px;
    display:block;
    object-fit:cover;
    box-shadow:0 8px 25px rgba(0,0,0,0.15);
}

.vc-content h3{
    font-size:32px;
    margin-bottom:8px;
}

.designation{
    display:inline-block;
    background:#FF9933;
    color:#fff;
    padding:8px 18px;
    border-radius:30px;
    font-weight:600;
    margin-bottom:20px;
}

.vc-content p{
    line-height:1.9;
    margin-bottom:15px;
    text-align:justify;
}

@media(max-width:768px){
    .vc-card{
        flex-direction:column;
        padding:20px;
    }

    .vc-image{
        flex:auto;
        width:100%;
    }

    .vc-content h3{
        font-size:26px;
    }
}


/* ===== Vice Chancellor Premium Card ===== */

.vc-card{
    display:flex;
    gap:45px;
    align-items:flex-start;
    background:linear-gradient(135deg,#ffffff,#fffaf3);
    padding:40px;
    border-radius:24px;
    border:1px solid rgba(255,153,51,.15);
    box-shadow:0 20px 50px rgba(0,0,0,.08);
    margin-top:40px;
    position:relative;
    overflow:hidden;
}

.vc-card::before{
    content:"";
    position:absolute;
    top:0;
    left:0;
    width:6px;
    height:100%;
    background:linear-gradient(to bottom,#FF9933,#E67E22);
}

.vc-image{
    flex:0 0 300px;
}

.vc-image img{
    width:100%;
    display:block;
    border-radius:20px;
    object-fit:cover;
    border:5px solid #fff;
    box-shadow:0 15px 35px rgba(0,0,0,.15);
    transition:.4s ease;
}

.vc-image img:hover{
    transform:translateY(-5px);
}

.vc-content{
    flex:1;
}

.vc-content h3{
    font-size:36px;
    color:#241608;
    margin-bottom:10px;
    font-family:'Cormorant Garamond',serif;
}

.designation{
    display:inline-block;
    background:linear-gradient(135deg,#FF9933,#E67E22);
    color:#fff;
    padding:10px 22px;
    border-radius:50px;
    font-weight:600;
    letter-spacing:.5px;
    margin-bottom:20px;
    box-shadow:0 8px 20px rgba(255,153,51,.35);
}

.vc-content p{
    font-size:16px;
    line-height:1.95;
    color:#555;
    text-align:justify;
    margin-bottom:18px;
}

.vc-content strong{
    color:#CC6600;
}

.vc-content em{
    color:#8B4513;
    font-style:italic;
}

/* ORCID Badge */

.orcid-badge{
    display:inline-flex;
    align-items:center;
    gap:8px;
    background:#f8f9fa;
    border:1px solid #e5e7eb;
    padding:10px 18px;
    border-radius:50px;
    margin-top:10px;
    font-size:14px;
    font-weight:600;
}

/* Achievement Cards */

.vc-highlights{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:20px;
    margin-top:30px;
}

.highlight-card{
    background:#fff;
    padding:20px;
    border-radius:16px;
    text-align:center;
    box-shadow:0 8px 25px rgba(0,0,0,.06);
    transition:.3s ease;
}

.highlight-card:hover{
    transform:translateY(-6px);
}

.highlight-card h4{
    font-size:30px;
    color:#FF9933;
    margin-bottom:8px;
}

.highlight-card span{
    color:#555;
    font-size:14px;
    font-weight:500;
}

/* Mobile */

@media(max-width:991px){

    .vc-card{
        flex-direction:column;
        padding:25px;
    }

    .vc-image{
        width:100%;
        flex:auto;
    }

    .vc-image img{
        max-width:350px;
        margin:auto;
    }

    .vc-highlights{
        grid-template-columns:repeat(2,1fr);
    }
}

@media(max-width:768px){

    .vc-content h3{
        font-size:28px;
        text-align:center;
    }

    .designation{
        display:table;
        margin:0 auto 20px;
    }

    .vc-highlights{
        grid-template-columns:1fr;
    }

    .vc-content p{
        text-align:left;
    }
}


/* ===== University Profile Premium ===== */

.university-profile{
    padding:80px 0;
    background:linear-gradient(to bottom,#fffdf8,#fff7ed);
}

.section-heading{
    text-align:center;
    margin-bottom:60px;
}

.section-tag{
    display:inline-block;
    padding:10px 22px;
    background:rgba(255,153,51,.12);
    color:#d97706;
    border-radius:50px;
    font-weight:600;
    letter-spacing:1px;
    text-transform:uppercase;
    font-size:13px;
    margin-bottom:18px;
}

.section-heading h2{
    font-family:'Cormorant Garamond',serif;
    font-size:56px;
    font-weight:700;
    color:#241608;
    margin-bottom:12px;
    line-height:1.1;
}

.section-heading p{
    font-size:18px;
    color:#6b7280;
}

/* Vice Chancellor Name */

.vc-content h3{
    font-family:'Cormorant Garamond',serif;
    font-size:48px;
    font-weight:700;
    color:#241608;
    margin-bottom:12px;
}

.vc-qualifications{
    font-size:15px;
    color:#d97706;
    font-weight:600;
    letter-spacing:.5px;
    margin-bottom:22px;
    line-height:1.8;
}

/* Stats Section */

.vc-stats{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:18px;
    margin-top:35px;
}

.stat-box{
    background:#fff;
    padding:24px 20px;
    border-radius:18px;
    text-align:center;
    box-shadow:0 12px 30px rgba(0,0,0,.06);
    transition:.3s ease;
}

.stat-box:hover{
    transform:translateY(-8px);
}

.stat-box h4{
    font-size:38px;
    color:#ff9933;
    font-weight:700;
    margin-bottom:8px;
}

.stat-box span{
    color:#666;
    font-size:14px;
    font-weight:500;
}

/* Detail Cards */

.vc-details{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:25px;
    margin-top:50px;
}

.detail-card{
    background:#fff;
    padding:30px;
    border-radius:20px;
    border-top:4px solid #ff9933;
    box-shadow:0 10px 30px rgba(0,0,0,.06);
    transition:.3s ease;
}

.detail-card:hover{
    transform:translateY(-5px);
}

.detail-card h4{
    font-size:22px;
    color:#241608;
    margin-bottom:12px;
    font-family:'Cormorant Garamond',serif;
}

.detail-card p{
    color:#666;
    line-height:1.9;
}

/* Premium Quote */

.vc-quote{
    margin-top:60px;
    padding:50px;
    border-radius:24px;
    background:linear-gradient(135deg,#ff9933,#e67e22);
    color:#fff;
    text-align:center;
    position:relative;
    overflow:hidden;
}

.vc-quote::before{
    content:"❝";
    position:absolute;
    top:-25px;
    left:25px;
    font-size:140px;
    opacity:.15;
    line-height:1;
}

.vc-quote p{
    font-size:24px;
    line-height:1.8;
    font-style:italic;
    max-width:1000px;
    margin:auto;
}

/* Mobile */

@media(max-width:991px){

    .section-heading h2{
        font-size:42px;
    }

    .vc-content h3{
        font-size:36px;
    }

    .vc-stats{
        grid-template-columns:repeat(2,1fr);
    }

    .vc-details{
        grid-template-columns:1fr;
    }
}

@media(max-width:576px){

    .section-heading h2{
        font-size:32px;
    }

    .vc-content h3{
        font-size:28px;
    }

    .vc-stats{
        grid-template-columns:1fr 1fr;
    }

    .vc-quote{
        padding:30px 20px;
    }

    .vc-quote p{
        font-size:18px;
    }
}