/* GAPM Medical Conference Styles */
:root {
    --primary-dark: #093282;
    --light-blue: #3883C4;
    --red-orange: #FE0707;
    --white: #FEFFFF;
    --light-gray: #f8f9fa;
    --text-gray: #6c757d;
    --border-light: #e9ecef;
}

.about-section {
    padding: 80px 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(9, 50, 130, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(56, 131, 196, 0.06) 0%, transparent 50%),
        linear-gradient(135deg, #f8faff 0%, #ffffff 70%, #f0f7ff 100%);
    position: relative;
    overflow: hidden;
    margin-top: -130px;
    padding-top: 200px;
}

.about-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23093282' fill-opacity='0.03'%3E%3Ccircle cx='30' cy='30' r='1'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    background-size: 60px 60px;
    background-position: 0 0;
    pointer-events: none;
    z-index: 1;
    animation: subtleMove 30s ease-in-out infinite;
}

@keyframes subtleMove {
    0%, 100% { 
        background-position: 0 0; 
        opacity: 0.5;
    }
    50% { 
        background-position: 30px 30px; 
        opacity: 0.3;
    }
}

/* Decorative Corner Elements */
.about-section::after {
    content: '';
    position: absolute;
    top: 20px;
    right: 20px;
    width: 80px;
    height: 80px;
    background: radial-gradient(circle, rgba(9, 50, 130, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 1;
}

.about-section .auto-container {
    position: relative;
    z-index: 2;
}

/* Section Header */
.section-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--primary-dark);
    color: var(--white);
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
}

.section-badge i {
    font-size: 16px;
}

.section-title {
    font-size: 36px;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 10px;
}

.section-subtitle {
    font-size: 20px;
    color: var(--light-blue);
    font-weight: 600;
    margin-bottom: 15px;
}

.section-description {
    font-size: 16px;
    color: var(--text-gray);
    margin: 0;
}

/* Main Content Grid */
.content-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    margin-bottom: 50px;
    align-items: stretch;
}

/* Left Content */
.main-content {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.welcome-block,
.theme-block,
.highlights-block {
    background: var(--white);
    border: 1px solid var(--border-light);
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 2px 10px rgba(9, 50, 130, 0.05);
}

.welcome-block h4,
.theme-block h4,
.highlights-block h4 {
    font-size: 20px;
    font-weight: 600;
    color: var(--primary-dark);
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.welcome-block h4::before {
    content: '👋';
    font-size: 18px;
}

.theme-block h4::before {
    content: '💡';
    font-size: 18px;
}

.highlights-block h4::before {
    content: '⭐';
    font-size: 18px;
}

.welcome-block p,
.theme-block p {
    color: var(--text-gray);
    line-height: 1.6;
    margin: 0;
}

/* Conference Info */
.conference-info {
    margin: 20px 0;
}

.info-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: var(--light-gray);
    border-radius: 8px;
}

.info-icon {
    width: 40px;
    height: 40px;
    background: var(--primary-dark);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 16px;
}

.info-content {
    display: flex;
    flex-direction: column;
}

.info-label {
    font-size: 12px;
    color: var(--text-gray);
    text-transform: uppercase;
    font-weight: 600;
}

.info-value {
    font-size: 14px;
    color: var(--primary-dark);
    font-weight: 600;
}

/* Theme Block */
.theme-text {
    background: linear-gradient(135deg, var(--primary-dark), var(--light-blue));
    color: var(--white);
    padding: 15px 20px;
    border-radius: 8px;
    font-style: italic;
    font-weight: 500;
    margin: 15px 0;
    position: relative;
}

.theme-text::before {
    content: '"';
    font-size: 24px;
    position: absolute;
    top: 5px;
    left: 10px;
    opacity: 0.5;
}

/* Highlights Grid */
.highlights-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-top: 15px;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px;
    background: var(--light-gray);
    border-radius: 6px;
    font-size: 14px;
    color: var(--primary-dark);
    font-weight: 500;
}

.highlight-item i {
    color: var(--light-blue);
    font-size: 16px;
}

/* Right Sidebar */
.sidebar-content {
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.conference-card {
    background: var(--white);
    border: 1px solid var(--border-light);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(9, 50, 130, 0.1);
}

.card-header {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background: linear-gradient(135deg, var(--primary-dark), var(--light-blue));
    color: var(--white);
}

.conference-logo {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.conference-details h5 {
    font-size: 18px;
    font-weight: 600;
    margin: 0 0 5px 0;
}

.conference-details span {
    font-size: 14px;
    opacity: 0.9;
}

.card-image {
    height: 150px;
    overflow: hidden;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.card-stats {
    display: flex;
    justify-content: space-around;
    padding: 18px;
    background: var(--light-gray);
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-dark);
}

.stat-label {
    font-size: 12px;
    color: var(--text-gray);
    text-transform: uppercase;
    font-weight: 600;
}

/* Quick Info */
.quick-info {
    background: var(--white);
    border: 1px solid var(--border-light);
    border-radius: 12px;
    padding: 20px;
}

.quick-info h5 {
    font-size: 16px;
    font-weight: 600;
    color: var(--primary-dark);
    margin-bottom: 15px;
}

.quick-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px 0;
    font-size: 14px;
    color: var(--text-gray);
}

.quick-item i {
    color: var(--light-blue);
    width: 16px;
}

/* Closing Sidebar */
.closing-sidebar {
    background: var(--light-gray);
    border-radius: 12px;
    padding: 22px;
}

.closing-message p {
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-gray);
    margin-bottom: 20px;
}

.signature span {
    display: block;
    font-size: 14px;
    color: var(--text-gray);
    margin-bottom: 5px;
}

.signature strong {
    font-size: 16px;
    color: var(--primary-dark);
}

/* Center Action Buttons */
.center-buttons {
    text-align: center;
    margin-top: 40px;
}

.action-buttons {
    display: inline-flex;
    gap: 20px;
}

.btn-learn-more,
.btn-register {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-learn-more {
    background: var(--white);
    color: var(--primary-dark);
    border: 2px solid var(--primary-dark);
}

.btn-register {
    background: var(--red-orange);
    color: var(--white);
    border: 2px solid var(--red-orange);
}

.btn-learn-more:hover {
    background: var(--primary-dark);
    color: var(--white);
}

.btn-register:hover {
    background: #d60606;
    border-color: #d60606;
    color: var(--white);
}

/* Responsive Design */
@media (max-width: 1199px) {
    .about-section {
        padding: 70px 0;
        margin-top: -80px;
        padding-top: 150px;
    }
    
    .content-grid {
        gap: 30px;
    }
    
    .section-title {
        font-size: 32px;
    }
    
    .section-subtitle {
        font-size: 18px;
    }
}

@media (max-width: 991px) {
    .about-section {
        padding: 60px 0;
        margin-top: -60px;
        padding-top: 120px;
    }
    
    .content-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .info-row {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .highlights-grid {
        grid-template-columns: 1fr 1fr;
        gap: 15px;
    }
    
    .section-header {
        margin-bottom: 40px;
    }
    
    .main-content {
        gap: 25px;
    }
    
    .sidebar-content {
        order: -1;
    }
}

@media (max-width: 767px) {
    .about-section {
        padding: 50px 0;
        margin-top: -40px;
        padding-top: 90px;
    }
    
    .section-title {
        font-size: 28px;
        line-height: 1.2;
    }
    
    .section-subtitle {
        font-size: 16px;
    }
    
    .section-description {
        font-size: 14px;
    }
    
    .welcome-block,
    .theme-block,
    .highlights-block,
    .quick-info,
    .conference-card,
    .closing-sidebar {
        padding: 20px;
        margin-bottom: 20px;
    }
    
    .highlights-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .info-item {
        padding: 12px;
        gap: 12px;
    }
    
    .info-icon {
        width: 35px;
        height: 35px;
        font-size: 14px;
    }
    
    .card-stats {
        padding: 15px;
    }
    
    .stat-number {
        font-size: 20px;
    }
    
    .stat-label {
        font-size: 11px;
    }
    
    .action-buttons {
        flex-direction: column;
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
        gap: 15px;
    }
    
    .btn-learn-more,
    .btn-register {
        width: 100%;
        padding: 14px 20px;
        font-size: 15px;
    }
    
    .section-header {
        margin-bottom: 30px;
        padding: 0 15px;
    }
    
    .content-grid {
        padding: 0 15px;
    }
}

@media (max-width: 575px) {
    .about-section {
        padding: 40px 0;
        margin-top: -20px;
        padding-top: 60px;
    }
    
    .section-title {
        font-size: 24px;
    }
    
    .section-subtitle {
        font-size: 15px;
    }
    
    .section-badge {
        padding: 6px 15px;
        font-size: 12px;
    }
    
    .welcome-block h4,
    .theme-block h4,
    .highlights-block h4 {
        font-size: 18px;
        margin-bottom: 12px;
    }
    
    .welcome-block p,
    .theme-block p {
        font-size: 14px;
        line-height: 1.5;
    }
    
    .theme-text {
        padding: 12px 15px;
        font-size: 14px;
    }
    
    .info-content .info-value {
        font-size: 13px;
    }
    
    .info-content .info-label {
        font-size: 11px;
    }
    
    .highlight-item {
        padding: 12px;
        font-size: 13px;
    }
    
    .highlight-item i {
        font-size: 16px;
    }
    
    .quick-info h5 {
        font-size: 15px;
        margin-bottom: 12px;
    }
    
    .quick-item {
        font-size: 13px;
        padding: 6px 0;
    }
    
    .conference-details h5 {
        font-size: 16px;
    }
    
    .conference-details span {
        font-size: 13px;
    }
    
    .closing-message p {
        font-size: 14px;
        line-height: 1.5;
    }
    
    .signature strong {
        font-size: 15px;
    }
}

@media (max-width: 375px) {
    .about-section {
        padding: 30px 0;
        margin-top: 0;
        padding-top: 30px;
    }
    
    .section-title {
        font-size: 22px;
    }
    
    .section-badge {
        padding: 5px 12px;
        font-size: 11px;
    }
    
    .welcome-block,
    .theme-block,
    .highlights-block,
    .quick-info,
    .conference-card,
    .closing-sidebar {
        padding: 15px;
        border-radius: 8px;
    }
    
    .info-item {
        padding: 10px;
        gap: 10px;
    }
    
    .info-icon {
        width: 30px;
        height: 30px;
        font-size: 12px;
    }
    
    .theme-text {
        padding: 10px 12px;
        font-size: 13px;
    }
    
    .btn-learn-more,
    .btn-register {
        padding: 12px 18px;
        font-size: 14px;
    }
    
    .card-image {
        height: 120px;
    }
    
    .stat-number {
        font-size: 18px;
    }
}

/* OLD Faculty Section Styles - Commented out to avoid conflicts with new tab interface
.faculty-grid {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    max-width: 900px;
    margin: 0 auto;
}

.home-faculty-block {
    text-align: center;
    max-width: 200px;
    cursor: pointer;
}

.faculty-image-box {
    position: relative;
    margin-bottom: 15px;
}

.faculty-image-circle {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid #3785C4;
    box-shadow: 0 15px 30px rgba(55,133,196,0.2);
    margin: 0 auto;
    position: relative;
    transition: all 0.3s ease;
}

.rotating-border {
    position: absolute;
    top: -8px;
    left: -8px;
    width: calc(100% + 16px);
    height: calc(100% + 16px);
    border: 4px dotted #FF6B6B;
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.4s ease;
    animation: facultyRotate 4s linear infinite;
    pointer-events: none;
    z-index: 2;
}
*/

/* Faculty Rotation Animation - Keep this for tab interface */
@keyframes facultyRotate {
    0% { 
        transform: rotate(0deg); 
        border-color: #FF6B6B;
    }
    25% { 
        transform: rotate(90deg); 
        border-color: #4834d4;
    }
    50% { 
        transform: rotate(180deg); 
        border-color: #0abde3;
    }
    75% { 
        transform: rotate(270deg); 
        border-color: #feca57;
    }
    100% { 
        transform: rotate(360deg); 
        border-color: #FF6B6B;
    }
}

/* View All Faculty Button Styles - Keep for other pages */
.view-all-faculty-btn {
    display: inline-block;
    background: linear-gradient(135deg, #3785C4, #071D6A);
    color: white;
    padding: 12px 30px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(55,133,196,0.3);
}

.view-all-faculty-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(55,133,196,0.4);
    color: white;
    text-decoration: none;
}

.view-all-faculty-btn i {
    margin-right: 8px;
}

/* Universal Gradient Title - Use anywhere on website */
.gradient-title,
.committee-title,
.sec-title .gradient-title,
.sec-title.light .gradient-title {
    background: linear-gradient(135deg, #093282 0%, #3785C4 25%, #FE0707 50%, #093282 75%, #3785C4 100%) !important;
    background-size: 200% 200% !important;
    background-clip: text !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    animation: gradientShift 4s ease-in-out infinite !important;
    font-weight: 700 !important;
    font-size: 2.5rem !important;
    text-align: center !important;
    margin-bottom: 15px !important;
    color: transparent !important;
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* Fallback for browsers that don't support background-clip: text */
@supports not (-webkit-background-clip: text) {
    .gradient-title,
    .committee-title {
        background: none;
        color: #093282;
        text-shadow: 
            1px 1px 0 #3785C4,
            2px 2px 0 #FE0707,
            3px 3px 0 rgba(0,0,0,0.1);
    }
}

.committee-subtitle,
.faculty-subtitle {
    color: #3785C4;
    font-size: 1.2rem;
    font-weight: 600;
    text-align: center;
    margin-bottom: 20px;
}

/* Committee and Faculty Description existing styles */
.committee-description p {
    color: #6c757d;
    font-size: 1rem;
    line-height: 1.6;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

/* Professional Team Section */
.professional-team-section {
    background: #f8f9fa;
    background-image: 
        radial-gradient(circle at 25% 25%, rgba(9, 50, 130, 0.03) 2px, transparent 2px),
        radial-gradient(circle at 75% 75%, rgba(55, 133, 196, 0.02) 1px, transparent 1px),
        linear-gradient(45deg, transparent 48%, rgba(9, 50, 130, 0.01) 50%, transparent 52%);
    background-size: 60px 60px, 40px 40px, 80px 80px;
    background-position: 0 0, 30px 30px, 0 0;
    padding: 80px 0;
    position: relative;
}

.team-section-header {
    text-align: center;
    margin-bottom: 50px;
    position: relative;
    z-index: 2;
}

.team-section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.section-subtitle {
    color: #6c757d;
    font-size: 1.2rem;
    font-weight: 500;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Professional Tab Navigation */
.professional-tabs-container {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
}

.tab-navigation {
    display: flex;
    justify-content: center;
    margin-bottom: 40px;
    background: white;
    border-radius: 12px;
    padding: 8px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    border: 1px solid #dee2e6;
    max-width: 600px;
    margin: 0 auto 40px auto;
}

.tab-btn {
    flex: 1;
    position: relative;
    background: none;
    border: none;
    padding: 16px 24px;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-weight: 600;
    font-size: 1rem;
    color: #6c757d;
    overflow: hidden;
}

.tab-btn.active {
    color: #093282;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    box-shadow: 0 4px 15px rgba(9, 50, 130, 0.1);
    transform: translateY(-1px);
}

.tab-btn:not(.active):hover {
    color: #093282;
    background: rgba(248, 249, 250, 0.8);
    transform: translateY(-1px);
}

.tab-btn i {
    font-size: 1.1rem;
    transition: transform 0.3s ease;
}

.tab-btn.active i {
    transform: scale(1.1);
}

.tab-indicator {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #093282, #3785C4);
    transform: scaleX(0);
    transition: transform 0.3s ease;
    border-radius: 3px;
}

.tab-btn.active .tab-indicator {
    transform: scaleX(1);
}

/* Tab Content */
.tab-content-wrapper {
    position: relative;
}

.tab-content {
    display: none;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s ease;
}

.tab-content.active {
    display: block;
    opacity: 1;
    transform: translateY(0);
    animation: fadeInUp 0.5s ease;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.tab-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    padding: 30px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    border: 1px solid #dee2e6;
}

.tab-info h3 {
    color: #093282;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.tab-info p {
    color: #495057;
    font-size: 1.1rem;
    line-height: 1.6;
    margin: 0;
    max-width: 650px;
}

.view-all-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #093282;
    text-decoration: none;
    font-weight: 600;
    padding: 12px 24px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 25px;
    transition: all 0.3s ease;
    border: 2px solid #093282;
    font-size: 1rem;
}

.view-all-link:hover {
    background: linear-gradient(135deg, #093282 0%, #3785C4 100%);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(9, 50, 130, 0.3);
    text-decoration: none;
}

.view-all-link i {
    font-size: 0.9rem;
    transition: transform 0.3s ease;
}

.view-all-link:hover i {
    transform: scale(1.1);
}

/* Cards Grid Styling - Updated for proper horizontal layout */
.committee-cards-grid {
    display: block; /* Change to block to use existing row structure */
}

.committee-cards-grid .committee-row {
    margin-bottom: 30px;
}

.committee-cards-grid .cards-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 25px;
}

.committee-cards-grid .cards-row.key-leadership {
    justify-content: center;
    max-width: 1000px;
    margin: 0 auto;
}

.faculty-cards-grid {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    max-width: 1000px;
    margin: 0 auto;
}

/* Faculty Grid Horizontal Layout */
.faculty-cards-grid .home-faculty-block {
    flex: 0 0 auto;
    text-align: center;
    max-width: 220px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.faculty-cards-grid .home-faculty-block:hover {
    transform: translateY(-10px);
}

/* Enhanced Faculty Layout */
.faculty-cards-grid .faculty-image-box {
    position: relative;
    margin-bottom: 15px;
}

.faculty-cards-grid .faculty-image-circle {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid #3785C4;
    box-shadow: 0 15px 30px rgba(55,133,196,0.2);
    margin: 0 auto;
    position: relative;
    transition: all 0.3s ease;
}

.faculty-cards-grid .rotating-border {
    position: absolute;
    top: -8px;
    left: -8px;
    width: calc(100% + 16px);
    height: calc(100% + 16px);
    border: 4px dotted #FF6B6B;
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.4s ease;
    animation: facultyRotate 4s linear infinite;
    pointer-events: none;
    z-index: 2;
}

.faculty-cards-grid .home-faculty-block:hover .rotating-border {
    opacity: 1;
}

.faculty-cards-grid .home-faculty-block:hover .faculty-image-circle {
    transform: scale(1.05);
    box-shadow: 0 20px 40px rgba(55,133,196,0.4);
    border: 4px solid transparent;
}

.faculty-cards-grid .faculty-image-circle img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.faculty-cards-grid .faculty-info h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #071D6A;
    margin: 10px 0 5px;
}

.faculty-cards-grid .faculty-info p {
    font-size: 0.9rem;
    color: #3785C4;
    margin: 0;
}

/* Mobile Responsive for Tabs */
@media (max-width: 1024px) {
    .faculty-cards-grid {
        gap: 25px;
        max-width: 800px;
    }
    
    .faculty-cards-grid .home-faculty-block {
        max-width: 200px;
    }
    
    .faculty-cards-grid .faculty-image-circle {
        width: 160px;
        height: 160px;
    }
}

@media (max-width: 768px) {
    .professional-team-section {
        padding: 60px 0;
    }
    
    .team-section-header h2 {
        font-size: 2rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
        padding: 0 20px;
    }
    
    .tab-navigation {
        max-width: 90%;
        margin: 0 auto 30px auto;
    }
    
    .tab-btn {
        padding: 14px 16px;
        font-size: 0.9rem;
        gap: 8px;
    }
    
    .tab-btn span {
        display: none;
    }
    
    .tab-btn i {
        font-size: 1.2rem;
    }
    
    .tab-header {
        flex-direction: column;
        gap: 20px;
        text-align: center;
        padding: 20px;
    }
    
    .tab-info h3 {
        font-size: 1.2rem;
    }
    
    .tab-info p {
        font-size: 0.9rem;
    }
    
    .view-all-link {
        padding: 10px 16px;
        font-size: 0.9rem;
    }
    
    .faculty-cards-grid {
        gap: 20px;
        justify-content: center;
    }
    
    .faculty-cards-grid .home-faculty-block {
        max-width: 170px;
    }
    
    .faculty-cards-grid .faculty-image-circle {
        width: 140px;
        height: 140px;
    }
    
    .faculty-cards-grid .rotating-border {
        width: calc(140px + 16px);
        height: calc(140px + 16px);
    }
}

@media (max-width: 480px) {
    .team-section-header h2 {
        font-size: 1.8rem;
    }
    
    .tab-btn {
        padding: 12px 14px;
    }
    
    .tab-header {
        padding: 15px;
    }
    
    .faculty-cards-grid {
        flex-direction: column;
        align-items: center;
        gap: 25px;
    }
    
    .faculty-cards-grid .home-faculty-block {
        max-width: 200px;
    }
    
    .faculty-cards-grid .faculty-image-circle {
        width: 150px;
        height: 150px;
    }
    
    .faculty-cards-grid .rotating-border {
        width: calc(150px + 16px);
        height: calc(150px + 16px);
    }
}

/* Ensure horizontal layout on larger screens */
@media (min-width: 1200px) {
    .faculty-cards-grid {
        gap: 35px;
        max-width: 1200px;
    }
    
    .faculty-cards-grid .home-faculty-block {
        max-width: 240px;
    }
    
    .faculty-cards-grid .faculty-image-circle {
        width: 200px;
        height: 200px;
    }
    
    .faculty-cards-grid .rotating-border {
        width: calc(200px + 16px);
        height: calc(200px + 16px);
    }
}

/* Professional About Section Redesign */
.professional-header {
    text-align: center;
    margin-bottom: 50px;
}

.conference-badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, #093282 0%, #3785C4 100%);
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 20px;
    box-shadow: 0 2px 10px rgba(9, 50, 130, 0.15);
}

.badge-number {
    font-size: 16px;
    font-weight: 700;
}

.badge-text {
    font-size: 14px;
}

.conference-title {
    font-size: 2.4rem;
    font-weight: 700;
    margin-bottom: 25px;
    line-height: 1.3;
    color: #093282;
}

.conference-meta {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
    font-size: 15px;
    color: #495057;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.meta-item i {
    color: #093282;
    font-size: 14px;
}

.meta-divider {
    color: #dee2e6;
    font-weight: bold;
}

/* Professional Grid Layout */
.professional-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

/* Primary Content */
.primary-content {
    display: flex;
    flex-direction: column;
    gap: 35px;
}

.welcome-section,
.theme-section,
.closing-section {
    padding: 0;
    margin-bottom: 10px;
}

.welcome-section h2,
.theme-section h2 {
    color: #093282;
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 15px;
    padding-bottom: 8px;
    border-bottom: 2px solid #f1f3f4;
}

.message-content p,
.theme-section p,
.closing-section p {
    color: #495057;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 12px;
}

.message-content p strong {
    color: #093282;
}

.theme-highlight {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 18px;
    border-radius: 10px;
    border-left: 4px solid #093282;
    font-size: 1.1rem;
    font-weight: 600;
    color: #093282;
    font-style: italic;
    margin: 15px 0;
    text-align: center;
}

.signature {
    background: #f8f9fa;
    padding: 15px;
    border-radius: 8px;
    margin-top: 15px;
    text-align: center;
}

.signature-line {
    color: #6c757d;
    font-size: 0.95rem;
    margin-bottom: 5px;
}

.signature-name {
    color: #093282;
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 3px;
}

.signature-event {
    color: #3785C4;
    font-size: 1rem;
    font-weight: 600;
}

/* Secondary Content */
.secondary-content {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.conference-card,
.quick-info,
.highlights {
    background: white;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    border: 1px solid #f1f3f4;
}

.card-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
}

.card-logo {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #093282 0%, #3785C4 100%);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.card-logo i {
    color: white;
    font-size: 1.1rem;
}

.card-title h3 {
    color: #fff;
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 2px;
}

.card-title span {
    color: #fff;
    font-size: 0.9rem;
}

.card-image {
    margin: 15px 0;
    border-radius: 8px;
    overflow: hidden;
}

.card-image img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.card-stats {
    display: flex;
    justify-content: space-around;
    padding: 15px 0;
    border-top: 1px solid #f1f3f4;
}

.stat {
    text-align: center;
}

.stat .number {
    display: block;
    font-size: 1.6rem;
    font-weight: 700;
    color: #093282;
}

.stat .label {
    font-size: 0.85rem;
    color: #6c757d;
    margin-top: 3px;
}

.quick-info h3,
.highlights h3 {
    color: #093282;
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 15px;
    text-align: center;
}

.info-list,
.highlights-grid {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.info-item,
.highlight {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px;
    background: #f8f9fa;
    border-radius: 6px;
    transition: all 0.2s ease;
}

.info-item:hover,
.highlight:hover {
    background: #e9ecef;
    transform: translateX(3px);
}

.info-item i,
.highlight i {
    color: #093282;
    font-size: 1rem;
    width: 16px;
}

.info-item span,
.highlight span {
    color: #495057;
    font-weight: 500;
    font-size: 0.95rem;
}

/* Action Section */
.action-section {
    text-align: center;
    padding: 30px 0;
}

.btn-outline,
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: 20px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    margin: 0 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

.btn-outline {
    background: white;
    color: #093282;
    border: 2px solid #093282;
}

.btn-primary {
    background: linear-gradient(135deg, #093282 0%, #3785C4 100%);
    color: white;
    border: 2px solid transparent;
}

.btn-outline:hover,
.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(0,0,0,0.12);
    text-decoration: none;
}

.btn-outline:hover {
    background: #093282;
    color: white;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #3785C4 0%, #093282 100%);
    color: white;
}

/* Professional Responsive Design */
@media (max-width: 1024px) {
    .professional-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .conference-meta {
        gap: 15px;
    }
}

@media (max-width: 768px) {
    .conference-title {
        font-size: 2rem;
    }
    
    .conference-meta {
        flex-direction: column;
        gap: 10px;
    }
    
    .meta-divider {
        display: none;
    }
    
    .welcome-section h2,
    .theme-section h2 {
        font-size: 1.2rem;
    }
    
    .theme-highlight {
        font-size: 1rem;
        padding: 15px;
    }
    
    .btn-outline,
    .btn-primary {
        padding: 10px 20px;
        font-size: 0.95rem;
        margin: 5px;
    }
}

@media (max-width: 480px) {
    .conference-title {
        font-size: 1.7rem;
    }
    
    .conference-badge {
        padding: 6px 16px;
        font-size: 13px;
    }
    
    .conference-card,
    .quick-info,
    .highlights {
        padding: 15px;
    }
    
    .card-stats {
        flex-direction: column;
        gap: 10px;
    }
} 