/* VC Profile Page Specific Styles */

@keyframes kenburns-zoom {
    0% {
        transform: scale(1);
    }
    100% {
        transform: scale(1.1);
    }
}

.hero-section.hero-custom-bg {
    overflow: hidden; /* Required for zoom effect */
}

.hero-section.hero-custom-bg .hero-overlay {
    background-image: url('../images/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    animation: kenburns-zoom 20s ease-out forwards;
}

/* General Layout */
.vc-profile-page {
    background-color: #f4f7f6;
}

/* The container is now a Bootstrap .row, so no special grid styles are needed. */
/* .vc-profile-container { } */

.vc-sidebar {
    /* No special positioning needed anymore. */
    margin-bottom: 2rem; /* Add space on mobile */
}

/* .vc-main-content { } */

/* Sidebar Card */
.vc-sidebar .card {
    border: none;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.07);
    overflow: hidden;
    text-align: center;
    padding: 2rem;
}

.vc-sidebar .profile-image {
    width: 240px; /* Further increased size */
    height: 240px; /* Further increased size */
    border-radius: 25px; /* Reduced border-radius for squarer corners */
    object-fit: cover;
    margin: 0 auto 1rem;
    border: 5px solid #fff;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.vc-sidebar h3 {
    margin-bottom: 0.25rem;
    font-size: 1.5rem;
    font-weight: 700;
    color: #343a40;
}

.vc-sidebar .text-muted {
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.vc-social-links a {
    color: #6c757d;
    font-size: 1.2rem;
    margin: 0 0.5rem;
    transition: color 0.3s ease;
}

.vc-social-links a:hover {
    color: #800080; /* Primary color */
}

/* Main Content Cards */
.content-card {
    background-color: #fff;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.07);
    margin-bottom: 2rem;
    padding: 2.5rem;
}

.content-card h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #800080;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.content-card h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background-color: #800080;
}

/* Welcome Message */
.welcome-message blockquote {
    font-size: 1.1rem;
    font-style: italic;
    border-left: 4px solid #e9ecef;
    padding-left: 1.5rem;
    margin: 0;
}

.welcome-message .blockquote-footer {
    margin-top: 1rem;
    font-weight: 600;
    color: #495057;
}

.content-card p, .content-card div, .content-card blockquote {
    font-size: 1.1rem; /* Increased font size for readability */
    line-height: 1.7;
}

/* Timeline for Biography & Achievements */
.timeline {
    position: relative;
    padding: 0;
    list-style: none;
}

.timeline::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 40px;
    width: 3px;
    background-color: #e9ecef;
    border-radius: 2px;
}

.timeline-item {
    margin-bottom: 2rem;
    position: relative;
    padding-left: 80px;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

.timeline-icon {
    position: absolute;
    left: 25px;
    top: 0;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background-color: #800080;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    box-shadow: 0 0 0 5px #fff;
}

.timeline-content {
    background-color: #f8f9fa;
    padding: 1.5rem;
    border-radius: 10px;
    position: relative;
}

.timeline-content h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.timeline-content .year {
    font-size: 0.9rem;
    font-weight: 500;
    color: #6c757d;
    margin-bottom: 1rem;
}

.timeline-content p:last-child {
    margin-bottom: 0;
}

/* Responsive Adjustments */
/* Responsive behavior is now handled by Bootstrap's col-lg-* classes. */
/* @media (max-width: 991.98px) { ... } */